Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Commit 5488911

Browse files
committed
Fix query in transaction test
1 parent 43dfe24 commit 5488911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TransactionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public function testTransaction(): void
332332
$count = User::count();
333333
$this->assertEquals(2, $count);
334334

335-
$this->assertTrue(User::where('alcaeus')->exists());
335+
$this->assertTrue(User::where('name', 'alcaeus')->exists());
336336
$this->assertTrue(User::where(['name' => 'klinson'])->where('age', 21)->exists());
337337
}
338338

0 commit comments

Comments
 (0)