Skip to content

Commit

Permalink
Apply fixes from StyleCI (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryk authored Dec 21, 2020
1 parent 511f5ff commit faf8a37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Fields/MorphOneFieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function test_morph_one_present_on_show_when_specified_related()
'user_id' => factory(User::class),
]);

$relationships = $this->get(PostWithMophOneRepository::uriKey() . "/$post->id?related=user")
$relationships = $this->get(PostWithMophOneRepository::uriKey()."/$post->id?related=user")
->assertJsonStructure([
'data' => [
'relationships' => [
Expand All @@ -52,7 +52,7 @@ public function test_morph_one_present_on_show_when_specified_related()

$this->assertNotNull($relationships);

$relationships = $this->get(PostWithMophOneRepository::uriKey() . "/$post->id")
$relationships = $this->get(PostWithMophOneRepository::uriKey()."/$post->id")
->json('data.relationships');

$this->assertNull($relationships);
Expand Down

0 comments on commit faf8a37

Please sign in to comment.