Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Nov 26, 2024
1 parent 07d2d3e commit 0b1f4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/StoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
test('Test getting a missing value from the store using a magic call', function() {
$store = new StoreModel(['a' => 1]);
expect($store->x)
->toBe(1);
->toBeNull();
});

test('Test adding a value to the store', function() {
Expand Down

0 comments on commit 0b1f4c1

Please sign in to comment.