From b7f197324594725d3ea23dc0b11d1550a3fbd6fa Mon Sep 17 00:00:00 2001 From: daniel-cintra Date: Wed, 13 Dec 2023 15:09:10 +0000 Subject: [PATCH] Fix styling --- tests/Feature/Blog/AuthorTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Feature/Blog/AuthorTest.php b/tests/Feature/Blog/AuthorTest.php index f52c294..d93d594 100644 --- a/tests/Feature/Blog/AuthorTest.php +++ b/tests/Feature/Blog/AuthorTest.php @@ -1,7 +1,7 @@ loggedRequest->get('/blog-author/' . $this->author->id . '/edit'); + $response = $this->loggedRequest->get('/blog-author/'.$this->author->id.'/edit'); $response->assertStatus(200); @@ -84,7 +84,7 @@ }); test('author can be updated', function () { - $response = $this->loggedRequest->put('/blog-author/' . $this->author->id, [ + $response = $this->loggedRequest->put('/blog-author/'.$this->author->id, [ 'name' => 'New Name', 'email' => 'new@email.com', ]); @@ -110,7 +110,7 @@ }); test('author can be deleted', function () { - $response = $this->loggedRequest->delete('/blog-author/' . $this->user->id); + $response = $this->loggedRequest->delete('/blog-author/'.$this->user->id); $response->assertRedirect('/blog-author');