Skip to content

Commit

Permalink
Merge pull request #3037 from yajra/analysis-vZN3bd
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
yajra authored Jul 31, 2023
2 parents 6e26310 + 7d3ed04 commit 6db67a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Integration/IgnoreGettersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ class IgnoreGettersTest extends TestCase
public function it_return_the_default_value_when_attribute_is_null()
{
$user = User::create([
'name' => 'foo',
'email' => '[email protected]',
'color' => null
]);
'name' => 'foo',
'email' => '[email protected]',
'color' => null,
]);

$this->assertEquals('#000000', $user->color);
$this->assertEquals('#000000', $user->refresh()->toArray()['color']);
Expand Down

0 comments on commit 6db67a2

Please sign in to comment.