From cd9daa1fbdb04fefe33d331c1d95f3d79f518229 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 13 Oct 2017 20:39:08 +0100 Subject: [PATCH] Correct the likes tests --- tests/Feature/LikesTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Feature/LikesTest.php b/tests/Feature/LikesTest.php index e33f3d12..f9f49d26 100644 --- a/tests/Feature/LikesTest.php +++ b/tests/Feature/LikesTest.php @@ -28,8 +28,8 @@ class LikesTest extends TestCase public function test_single_like_page() { - $response = $this->get('/likes'); - $response->assertViewIs('likes.index'); + $response = $this->get('/likes/1'); + $response->assertViewIs('likes.show'); } public function test_like_micropub_request()