Skip to content

Commit faf8a37

Browse files
authored
Apply fixes from StyleCI (#320)
1 parent 511f5ff commit faf8a37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Fields/MorphOneFieldTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function test_morph_one_present_on_show_when_specified_related()
3636
'user_id' => factory(User::class),
3737
]);
3838

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

5353
$this->assertNotNull($relationships);
5454

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

5858
$this->assertNull($relationships);

0 commit comments

Comments
 (0)