From ae45709d5e65bdcb5bd19478b2623735082c4dae Mon Sep 17 00:00:00 2001 From: Lupacescu Eduard Date: Sun, 8 Mar 2020 18:32:48 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Controllers/RepositoryUpdateControllerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Controllers/RepositoryUpdateControllerTest.php b/tests/Controllers/RepositoryUpdateControllerTest.php index fb6149937..26e15d329 100644 --- a/tests/Controllers/RepositoryUpdateControllerTest.php +++ b/tests/Controllers/RepositoryUpdateControllerTest.php @@ -24,7 +24,7 @@ public function test_basic_update_works() { $post = factory(Post::class)->create(['user_id' => 1]); - $this->withoutExceptionHandling()->patch('/restify-api/posts/' . $post->id, [ + $this->withoutExceptionHandling()->patch('/restify-api/posts/'.$post->id, [ 'title' => 'Updated title', ]) ->assertStatus(200); @@ -44,7 +44,7 @@ public function test_unathorized_to_update() $_SERVER['restify.post.updateable'] = false; - $this->patch('/restify-api/posts/' . $post->id, [ + $this->patch('/restify-api/posts/'.$post->id, [ 'title' => 'Updated title', ])->assertStatus(403) ->assertJson([