Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryk authored and github-actions[bot] committed Jul 14, 2022
1 parent f849a30 commit 30ad502
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Unit/RepositoryAfterBulkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function test_it_calls_the_overriden_stored_bulk_method(): void
'name' => $user->name,
'email' => '[email protected]',
'password' => $user->password,
]
],
])->assertSuccessful();

$this->assertEquals('[email protected]', $user->first()->email);
Expand All @@ -42,7 +42,7 @@ public function test_it_calls_the_overriden_updated_bulk_method(): void
[
'id' => $user->id,
'email' => '[email protected]',
]
],
])->assertSuccessful();

$this->assertEquals('[email protected]', $user->fresh()->email);
Expand All @@ -57,7 +57,7 @@ public function test_it_calls_the_overriden_saved_bulk_method_for_create(): void
'name' => $user->name,
'email' => '[email protected]',
'password' => $user->password,
]
],
])->assertSuccessful();

$this->assertEquals('John Saved', $user->first()->name);
Expand All @@ -71,7 +71,7 @@ public function test_it_calls_the_overriden_saved_bulk_method_for_update(): void
[
'id' => $user->id,
'email' => '[email protected]',
]
],
])->assertSuccessful();

$this->assertEquals('John Saved', $user->fresh()->name);
Expand Down

0 comments on commit 30ad502

Please sign in to comment.