Skip to content

Commit

Permalink
Remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit committed Jan 16, 2023
1 parent d5a7aeb commit c53c2ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Integration/Database/EloquentModelEnumCastingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public function testEnumsAreCastable()
{
DB::table('enum_casts')->insert([
'string_status' => 'pending',
'string_status_array' => json_encode(['pending', 'done']),
'string_status_array' => json_encode(['pending','done']),
'integer_status' => 1,
'integer_status_array' => json_encode([1, 2]),
'integer_status_array' => json_encode([1,2]),
'arrayable_status' => 'pending',
]);

Expand Down

0 comments on commit c53c2ff

Please sign in to comment.