1
0
mirror of synced 2024-12-14 15:16:04 +03:00

Fix bug in testsuite that makes oci8 testsuite fail

This commit is contained in:
Benjamin Eberlei 2010-07-28 23:36:52 +02:00
parent d6a1075b53
commit 104dd7aa77

View File

@ -579,7 +579,7 @@ class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
$address->user = null;
$this->_em->flush();
$this->assertFalse($this->_em->getConnection()->fetchColumn("select 1 from cms_addresses where user_id = ".$user->id));
$this->assertNotEquals(1, $this->_em->getConnection()->fetchColumn("select 1 from cms_addresses where user_id = ".$user->id));
}
/**