Browse Source

fix assertion

Taylor Otwell 7 years ago
parent
commit
a7481f69d5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Feature/ExampleTest.php

+ 1 - 1
tests/Feature/ExampleTest.php

@@ -18,6 +18,6 @@ class ExampleTest extends TestCase
     {
         $response = $this->get('/');
 
-        $response->assertHasStatus(200);
+        $response->assertStatus(200);
     }
 }