From 5d6a39d14c054456e3826985130ef352aa238f35 Mon Sep 17 00:00:00 2001 From: Stefano Torresi Date: Tue, 17 Mar 2015 19:43:13 +0100 Subject: [PATCH] fix tests tear down --- 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 48f9bbdb3..ae9f4b43b 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -501,8 +501,8 @@ abstract class OrmFunctionalTestCase extends OrmTestCase } if (isset($this->_usedModelSets['custom_id_object_type'])) { - $conn->executeUpdate('DELETE FROM custom_id_type_parent'); $conn->executeUpdate('DELETE FROM custom_id_type_child'); + $conn->executeUpdate('DELETE FROM custom_id_type_parent'); } $this->_em->clear();