[DDC-3343] Failing test case (updated)
This commit is contained in:
parent
db3697433b
commit
c2b3348f99
1 changed files with 2 additions and 5 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue