Browse Source

fixed test

thinkingmedia 9 years ago
parent
commit
5d680742e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/QueryTest.php

+ 1 - 1
tests/TestCase/Database/QueryTest.php

@@ -3894,7 +3894,7 @@ class QueryTest extends TestCase
             ->set('name', 'mark')
             ->where(['id' => 1])
             ->executeAndClose();
-        $this->assertCount(1, $rowCount);
+        $this->assertEquals(1, $rowCount);
     }
 
     /**