Skip to content

Commit

Permalink
Fix array syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
raszi committed Aug 31, 2021
1 parent 953d581 commit ab3b480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Foundation/FoundationInteractsWithDatabaseTest.php
Expand Up @@ -321,12 +321,12 @@ public function whereConditionProvider(): array

$complexCondition = [
['title', '=', 'Spark'],
['count', '>', 5]
['count', '>', 5],
];

return [
'simple' => [$simpleCondition],
'complex' => [$complexCondition]
'complex' => [$complexCondition],
];
}

Expand Down

0 comments on commit ab3b480

Please sign in to comment.