Skip to content

Commit 63b0f97

Browse files
aarondfrancisclaude
andcommitted
Fix missed test assertion for uuids_are_bound_correctly
Update the expected query to include the default ORDER BY clause. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2c4fa12 commit 63b0f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integration/BuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public function uuids_are_bound_correctly()
347347

348348
$this->assertCount(3, $queries);
349349
$this->assertEquals(
350-
'select * from `notifications` where `notifications`.`id` in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) limit 16 offset 0',
350+
'select * from `notifications` where `notifications`.`id` in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) order by `notifications`.`id` asc limit 16 offset 0',
351351
$queries[2]['query']
352352
);
353353

0 commit comments

Comments
 (0)