From 47ffde10c858f2d54ff1c5fef4e89aa5795316da Mon Sep 17 00:00:00 2001 From: jwage Date: Sat, 30 May 2009 06:22:18 +0000 Subject: [PATCH] [2.0] Fixing getConnection() to use the new dropAndCreateDatabase() --- tests/Doctrine/Tests/TestUtil.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/tests/Doctrine/Tests/TestUtil.php b/tests/Doctrine/Tests/TestUtil.php index 088c20d7f..a34915bab 100644 --- a/tests/Doctrine/Tests/TestUtil.php +++ b/tests/Doctrine/Tests/TestUtil.php @@ -22,21 +22,13 @@ class TestUtil 'memory' => true ); } - + $conn = \Doctrine\DBAL\DriverManager::getConnection($params); - $sm = $conn->getSchemaManager(); - - try { - $sm->dropDatabase(); - } catch (\Exception $e) {} - - try { - $sm->createDatabase(); - } catch (\Exception $e) {} + $conn->getSchemaManager()->dropAndCreateDatabase(); $conn->close(); + $conn->connect(); - $conn = \Doctrine\DBAL\DriverManager::getConnection($params); return $conn; } } \ No newline at end of file