From a792bbf82d9e1d81d1bf4d7675a8c48b4b563aa4 Mon Sep 17 00:00:00 2001 From: Bill Schaller Date: Thu, 19 Mar 2015 16:11:07 -0400 Subject: [PATCH] Fix test failing because a table was added to the CMS model suite --- .../ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php index 5fd9a95fc1f..54e6040838a 100644 --- a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php @@ -97,7 +97,7 @@ public function testGetDropSchemaSql() $tool = new SchemaTool($this->_em); $sql = $tool->getDropSchemaSQL($classes); - $this->assertEquals(14, count($sql)); + $this->assertEquals(15, count($sql)); $dropSequenceSQLs = 0;