Commit b64d1e3d authored by Taylor Otwell's avatar Taylor Otwell

fix example test

parent cf73f8cb
......@@ -16,7 +16,8 @@ class ExampleTest extends TestCase
*/
public function testBasicTest()
{
$this->visit('/')
->see('Laravel');
$response = $this->get('/');
$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