Browse Source

another test fix

Jose Lorenzo Rodriguez 8 years ago
parent
commit
2ad3bb2a36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/QueryTest.php

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

@@ -4483,7 +4483,7 @@ class QueryTest extends TestCase
             ->limit(1)
             ->execute()
             ->fetchAll('assoc');
-        $this->assertSame([['id' => 1, 'user_id' => 1, 'is_active' => true, 'a' => 1]], $results);
+        $this->assertSame([['id' => 1, 'user_id' => 1, 'is_active' => false, 'a' => 1]], $results);
     }
 
     /**