From a7481f69d5e164fb8f7c76f13f05281d634b34c1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 5 Dec 2016 13:22:14 -0600 Subject: [PATCH] fix assertion --- tests/Feature/ExampleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index d930a03e..486dc271 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -18,6 +18,6 @@ public function testBasicTest() { $response = $this->get('/'); - $response->assertHasStatus(200); + $response->assertStatus(200); } }