Skip to content

Commit

Permalink
Merge pull request #4 from Laragear/analysis-0gRBxm
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
DarkGhostHunter authored Feb 25, 2022
2 parents eb9e885 + c58dd03 commit 692eb12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Casts/CastsRutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ public function test_gets_null_if_one_rut_column_value_is_null(): void
$user = $this->model->find(1);

$user->setRawAttributes([
'rut_num' => null
'rut_num' => null,
]);

static::assertNull($user->rut);

$user = $this->model->find(1);

$user->setRawAttributes([
'rut_vd' => null
'rut_vd' => null,
]);

static::assertNull($user->rut);
Expand All @@ -126,7 +126,7 @@ public function test_doesnt_throws_when_getting_value_not_enough_data(): void

$user->setRawAttributes([
'rut_num' => 0,
'rut_vd' => ''
'rut_vd' => '',
]);

static::assertInstanceOf(Rut::class, $user->rut);
Expand Down

0 comments on commit 692eb12

Please sign in to comment.