Skip to content

Commit 8b45e24

Browse files
committed
Fix expected order of distinct values in QueryRunTest.
1 parent 0816152 commit 8b45e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/QueryRunTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ public function testDistinct()
634634
->from('customer')
635635
->distinct('group', $db);
636636

637-
$this->assertEquals(['odd', 'even'], $rows, '', 0.0, 10, true);
637+
$this->assertEquals(['even', 'odd'], $rows, '', 0.0, 10, true);
638638
}
639639

640640
public function testAggregationShortcuts()

0 commit comments

Comments
 (0)