From b64d1e3dc89f940ef36f8b14490620b9bd54c870 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 5 Dec 2016 12:40:03 -0600 Subject: [PATCH] fix example test --- tests/Feature/ExampleTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index bcbb562c..d930a03e 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -16,7 +16,8 @@ class ExampleTest extends TestCase */ public function testBasicTest() { - $this->visit('/') - ->see('Laravel'); + $response = $this->get('/'); + + $response->assertHasStatus(200); } }