Skip to content

Commit 47cdcf9

Browse files
committed
test: fixed test
1 parent 37cc8ba commit 47cdcf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Database/Table/bugs/deleteCacheBug.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test(function () use ($context) {
5252
test(function () use ($context) {
5353
$books = [];
5454
for ($i = 0; $i < 2; $i++) {
55-
$booksSelection = $context->table('book')->where('id IN ?', [3, 4]);
55+
$booksSelection = $context->table('book')->where('id IN ?', [3, 4])->order('id');
5656
foreach ($booksSelection as $book) {
5757
$books[] = $book->id;
5858

0 commit comments

Comments
 (0)