Skip to content

Commit

Permalink
Making postgres tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 8, 2015
1 parent 8545b87 commit a176a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Database/QueryTest.php
Expand Up @@ -1477,7 +1477,7 @@ public function testSelectDistinctON()
->select(['id', 'author_id'])
->distinct(['author_id'])
->from(['a' => 'articles'])
->order(['id' => 'ASC'])
->order(['author_id' => 'ASC'])
->execute();
$this->assertCount(2, $result);
$results = $result->fetchAll('assoc');
Expand Down

0 comments on commit a176a69

Please sign in to comment.