Commit c9048212 authored by Steve Müller's avatar Steve Müller

fix assertion method for non-deterministic query results

parent 8ce8f300
...@@ -117,7 +117,7 @@ class ModifyLimitQueryTest extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -117,7 +117,7 @@ class ModifyLimitQueryTest extends \Doctrine\Tests\DbalFunctionalTestCase
if ($deterministic) { if ($deterministic) {
$this->assertEquals($expectedResults, $data); $this->assertEquals($expectedResults, $data);
} else { } else {
$this->assertEquals(count($expectedResults), count($data)); $this->assertCount(count($expectedResults), $data);
} }
} }
} }
\ No newline at end of file
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