From 0ee664598b8615813d07dabce61a03c2908493ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 16 Dec 2015 16:11:48 +0100 Subject: [PATCH] fixes #2250 --- tests/Doctrine/Tests/DBAL/Functional/WriteTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php b/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php index 15d443a7451..2d2be344d61 100644 --- a/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php +++ b/tests/Doctrine/Tests/DBAL/Functional/WriteTest.php @@ -262,7 +262,7 @@ public function testEmptyIdentityInsert() $table->setPrimaryKey(array('id')); try { - $this->_conn->getSchemaManager()->dropTable($table); + $this->_conn->getSchemaManager()->dropTable($table->getQuotedName($platform)); } catch(\Exception $e) { } foreach ($platform->getCreateTableSQL($table) as $sql) {