Skip to content

Commit 202a33c

Browse files
committed
Update README.md
1 parent def4631 commit 202a33c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Check database has rows
1919

2020
$testCase->assertDatabaseHas('table', [
2121
'column1' => 'value1',
22-
'column2' => 'value2',
22+
WhereCondition::make('column2', '>=', 42),
2323
]);
2424
```
2525

@@ -29,6 +29,6 @@ Check rows are missing in database
2929

3030
$testCase->assertDatabaseMissing('table', [
3131
'column1' => 'value1',
32-
'column2' => 'value2',
32+
WhereCondition::make('column2', '<', 42),
3333
]);
3434
````

0 commit comments

Comments
 (0)