Commit b64d1e3d authored by Taylor Otwell's avatar Taylor Otwell

fix example test

parent cf73f8cb
...@@ -16,7 +16,8 @@ class ExampleTest extends TestCase ...@@ -16,7 +16,8 @@ class ExampleTest extends TestCase
*/ */
public function testBasicTest() public function testBasicTest()
{ {
$this->visit('/') $response = $this->get('/');
->see('Laravel');
$response->assertHasStatus(200);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment