Skip to content

Commit a559a76

Browse files
committed
test: fixed test
1 parent 27909d0 commit a559a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tests/Database/Table/bugs/deleteCacheBug.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ test(function () use ($context) {
5050
test(function () use ($context) {
5151
$books = [];
5252
for ($i = 0; $i < 2; $i++) {
53-
$booksSelection = $context->table('book')->where('id IN ?', [3, 4]);
53+
$booksSelection = $context->table('book')->where('id IN ?', [3, 4])->order('id');
5454
foreach ($booksSelection as $book) {
5555
$books[] = $book->id;
5656

0 commit comments

Comments
 (0)