From 0b2fb7fd7890f9a5eb51c7ca4fa888378f540b15 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Thu, 15 Jan 2015 03:55:29 +0000 Subject: [PATCH] Fixed identifier quoting in functional tests. --- tests/Doctrine/Tests/OrmFunctionalTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index ad2c17fce..bc301ecfb 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -219,7 +219,7 @@ abstract class OrmFunctionalTestCase extends OrmTestCase protected function tearDown() { $conn = static::$_sharedConn; - $platform = $this->_em->getConnection()->getDatabasePlatform(); + $platform = $conn->getDatabasePlatform(); $this->_sqlLoggerStack->enabled = false;