#1169 DDC-3343 - correcting collection name used in tests
This commit is contained in:
parent
a0eb6005f3
commit
3f28adf9b6
1 changed files with 2 additions and 2 deletions
|
@ -1141,7 +1141,7 @@ class ExtraLazyCollectionTest extends OrmFunctionalTestCase
|
||||||
/* @var $user User */
|
/* @var $user User */
|
||||||
$user = $this->_em->find(User::CLASSNAME, $userId);
|
$user = $this->_em->find(User::CLASSNAME, $userId);
|
||||||
|
|
||||||
$user->tweets->removeElement($this->_em->find(UserList::CLASSNAME, $userListId));
|
$user->userLists->removeElement($this->_em->find(UserList::CLASSNAME, $userListId));
|
||||||
|
|
||||||
$this->_em->clear();
|
$this->_em->clear();
|
||||||
|
|
||||||
|
@ -1194,7 +1194,7 @@ class ExtraLazyCollectionTest extends OrmFunctionalTestCase
|
||||||
/* @var $user User */
|
/* @var $user User */
|
||||||
$user = $this->_em->find(User::CLASSNAME, $userId);
|
$user = $this->_em->find(User::CLASSNAME, $userId);
|
||||||
|
|
||||||
$user->tweets->removeElement($this->_em->getReference(UserList::CLASSNAME, $userListId));
|
$user->userLists->removeElement($this->_em->getReference(UserList::CLASSNAME, $userListId));
|
||||||
|
|
||||||
$this->_em->clear();
|
$this->_em->clear();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue