From e76b20b1098731a82eadfed53e4e28a70e29e90d Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Wed, 28 Jan 2015 20:01:57 +0000 Subject: [PATCH] #1169 DDC-3343 - removing note about query count assertion --- tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php b/tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php index b60eb02869c..731a0826d60 100644 --- a/tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php @@ -485,7 +485,6 @@ public function testRemoveElementOneToMany() $user->articles->removeElement($article); $this->assertFalse($user->articles->isInitialized(), "Post-Condition: Collection is not initialized."); - // NOTE: +2 queries because CmsArticle is a versioned entity, and that needs to be handled accordingly $this->assertEquals($queryCount, $this->getCurrentQueryCount()); // Test One to Many removal with Entity state as new