Remove unecessary persist in tests
This commit is contained in:
parent
be4aafd4f6
commit
6b1d64d484
1 changed files with 0 additions and 6 deletions
|
@ -357,9 +357,6 @@ class UnitOfWorkTest extends OrmTestCase
|
|||
|
||||
$entity = new Country(456, 'United Kingdom');
|
||||
|
||||
$this->_unitOfWork->persist($entity);
|
||||
$this->assertTrue($this->_unitOfWork->isInIdentityMap($entity));
|
||||
|
||||
$this->_unitOfWork->clear($entity);
|
||||
}
|
||||
|
||||
|
@ -367,9 +364,6 @@ class UnitOfWorkTest extends OrmTestCase
|
|||
{
|
||||
$entity = new Country(456, 'United Kingdom');
|
||||
|
||||
$this->_unitOfWork->persist($entity);
|
||||
$this->assertTrue($this->_unitOfWork->isInIdentityMap($entity));
|
||||
|
||||
$this->_unitOfWork->clear();
|
||||
|
||||
$this->assertFalse($this->_unitOfWork->isInIdentityMap($entity));
|
||||
|
|
Loading…
Add table
Reference in a new issue