Fix bug in test, removed an assertion that is not necessary and violates sqlites autoincrement assumptions
This commit is contained in:
parent
86f67788c5
commit
f2d8102bbf
1 changed files with 0 additions and 2 deletions
|
@ -812,7 +812,6 @@ class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
|
||||||
public function testOneToOneOrphanRemoval()
|
public function testOneToOneOrphanRemoval()
|
||||||
{
|
{
|
||||||
//$this->_em->getConnection()->getConfiguration()->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger);
|
|
||||||
$user = new CmsUser();
|
$user = new CmsUser();
|
||||||
$user->username = "beberlei";
|
$user->username = "beberlei";
|
||||||
$user->name = "Benjamin E.";
|
$user->name = "Benjamin E.";
|
||||||
|
@ -858,7 +857,6 @@ class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
|
||||||
$this->_em->flush();
|
$this->_em->flush();
|
||||||
$this->assertEquals(1, $this->_em->getConnection()->fetchColumn("select count(*) from cms_addresses"));
|
$this->assertEquals(1, $this->_em->getConnection()->fetchColumn("select count(*) from cms_addresses"));
|
||||||
$this->assertEquals(0, $this->_em->getConnection()->fetchColumn("select count(*) from cms_addresses where id=".$addressId.""));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetPartialReferenceToUpdateObjectWithoutLoadingIt()
|
public function testGetPartialReferenceToUpdateObjectWithoutLoadingIt()
|
||||||
|
|
Loading…
Add table
Reference in a new issue