Skip to content

Commit

Permalink
Fix bug in testsuite that makes oci8 testsuite fail
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jul 28, 2010
1 parent d6a1075 commit 104dd7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public function testOneToOneNullUpdate()
$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));
}

/**
Expand Down

0 comments on commit 104dd7a

Please sign in to comment.