From 3b9b74b5ea33707ad4c06839233d8145e40c87f0 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 9 Sep 2017 22:11:33 +0200 Subject: [PATCH] Example test should point to /login --- tests/Feature/ExampleTest.php | 31 ++----------------------------- tests/Unit/ExampleTest.php | 30 +----------------------------- 2 files changed, 3 insertions(+), 58 deletions(-) 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 @@