1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00

[DDC-3343] Failing test case (updated)

This commit is contained in:
Andrea Sprega 2014-10-25 00:02:57 +02:00 committed by Marco Pivetta
parent db3697433b
commit c2b3348f99

View file

@ -39,14 +39,11 @@ class DDC3343Test extends \Doctrine\Tests\OrmFunctionalTestCase
$group->users->removeElement($user); $group->users->removeElement($user);
$this->_em->persist($group); // Even though the collection is extra lazy, the user should not have been deleted.
$this->_em->flush();
// Even if the collection is extra lazy, the user should not have been deleted.
$this->_em->clear(); $this->_em->clear();
$user = $this->_em->find(__NAMESPACE__ . '\DDC3343User', $user->id); $user = $this->_em->find(__NAMESPACE__ . '\DDC3343User', $user->id);
$this->assertNotNull($user); $this->assertInstanceOf(__NAMESPACE__ . '\DDC3343User', $user);
} }
} }