diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index df6e4a591d..f31e495ca3 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -1,39 +1,12 @@ get('/'); - - $response->assertStatus(302); - } - /** * A basic test example. * @@ -41,7 +14,7 @@ class ExampleTest extends TestCase */ public function testBasicTest() { - $response = $this->get('/login'); + $response = $this->get('/'); $response->assertStatus(200); } diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php index b55d6c83f1..e9fe19c664 100644 --- a/tests/Unit/ExampleTest.php +++ b/tests/Unit/ExampleTest.php @@ -1,38 +1,10 @@