Commit 884626cc authored by Tiago Brito's avatar Tiago Brito Committed by Steve Müller

Change assertEquals to assertSame

parent 3ff08abc
...@@ -117,7 +117,7 @@ class DBAL630Test extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -117,7 +117,7 @@ class DBAL630Test extends \Doctrine\Tests\DbalFunctionalTestCase
$row = $this->_conn->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', array($id)); $row = $this->_conn->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', array($id));
$this->assertEquals($databaseConvertedValue, $row['bool_col']); $this->assertSame($databaseConvertedValue, $row['bool_col']);
} }
/** /**
...@@ -147,7 +147,7 @@ class DBAL630Test extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -147,7 +147,7 @@ class DBAL630Test extends \Doctrine\Tests\DbalFunctionalTestCase
$row = $this->_conn->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', array($id)); $row = $this->_conn->fetchAssoc('SELECT bool_col FROM dbal630_allow_nulls WHERE id = ?', array($id));
$this->assertEquals($databaseConvertedValue, $row['bool_col']); $this->assertSame($databaseConvertedValue, $row['bool_col']);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment