Skip to content

Commit

Permalink
Merge branch '4.x' of github.com:BinarCode/laravel-restify into 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryk committed Dec 22, 2020
2 parents 0c33a6b + 94f1249 commit f52f92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Fields/MorphToManyFieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function test_morph_to_many_displays_in_relationships()
);
});

$this->get(UserWithRolesRepository::uriKey() . "/$user->id?related=roles")
$this->get(UserWithRolesRepository::uriKey()."/$user->id?related=roles")
->assertJsonStructure([
'data' => [
'relationships' => [
Expand All @@ -56,7 +56,7 @@ public function test_morph_to_many_works_with_belongs_to_many()
);
});

$this->get(UserWithRolesRepository::uriKey() . "/$user->id?related=roles,companies")
$this->get(UserWithRolesRepository::uriKey()."/$user->id?related=roles,companies")
->assertJsonStructure([
'data' => [
'relationships' => [
Expand Down

0 comments on commit f52f92c

Please sign in to comment.