Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjonstrup committed Mar 14, 2024
1 parent 6ea7f34 commit 571c17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/HelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ public function it_can_store_arrays()
option(['foo' => ['bar', 'baz']]);

$this->assertDatabaseHas('options', ['key' => 'foo', 'value' => '["bar","baz"]']);
$this->assertEquals(option('foo'), ['bar', 'baz']);
$this->assertEquals(['bar', 'baz'], option('foo'));
}
}

0 comments on commit 571c17c

Please sign in to comment.