Browse Source

Fix typo.

Mark Story 10 years ago
parent
commit
d7d3a26d6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/QueryTest.php

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

@@ -3474,7 +3474,7 @@ class QueryTest extends TestCase
         $this->assertCount(0, $result, 'Unbuffered queries only have a count when results are fetched');
 
         $list = $result->fetchAll('assoc');
-        $this->skipIf(count($list) === 0, 'This test fails oddly fails on travis with PHP 5.6');
+        $this->skipIf(count($list) === 0, 'This test fails oddly on travis with PHP 5.6');
 
         $this->assertCount(3, $list);
         $result->closeCursor();