Commit 0ee66459 authored by Thomas Müller's avatar Thomas Müller

fixes #2250

parent de6c0bd2
...@@ -262,7 +262,7 @@ class WriteTest extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -262,7 +262,7 @@ class WriteTest extends \Doctrine\Tests\DbalFunctionalTestCase
$table->setPrimaryKey(array('id')); $table->setPrimaryKey(array('id'));
try { try {
$this->_conn->getSchemaManager()->dropTable($table); $this->_conn->getSchemaManager()->dropTable($table->getQuotedName($platform));
} catch(\Exception $e) { } } catch(\Exception $e) { }
foreach ($platform->getCreateTableSQL($table) as $sql) { foreach ($platform->getCreateTableSQL($table) as $sql) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment