Skip to content

Commit b64d1e3

Browse files
committed
fix example test
1 parent cf73f8c commit b64d1e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/Feature/ExampleTest.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ class ExampleTest extends TestCase
1616
*/
1717
public function testBasicTest()
1818
{
19-
$this->visit('/')
20-
->see('Laravel');
19+
$response = $this->get('/');
20+
21+
$response->assertHasStatus(200);
2122
}
2223
}

0 commit comments

Comments
 (0)