Completed
Push — master ( 53ba1d...b0b495 )
by Jake
07:22 queued 04:07
created
tests/AdminControllerTest.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use MeestorHok\Blue\Http\Controllers\AdminController;
4
-
5 3
 class AdminControllerTest extends \Orchestra\Testbench\TestCase
6 4
 {
7 5
     /**
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
         $user = factory(App\User::class)->create();
15 15
         
16 16
         $this->actingAs($user, 'admin')
17
-             ->call('GET', 'admin')
18
-             ->see('Waddup, y\'all');
17
+                ->call('GET', 'admin')
18
+                ->see('Waddup, y\'all');
19 19
     }
20 20
     
21 21
     /**
@@ -26,6 +26,6 @@  discard block
 block discarded – undo
26 26
     public function test_redirects_to_login_if_user_is_not_authenticated ()
27 27
     {
28 28
         $this->call('GET', 'admin')
29
-             ->assertRedirectedTo('login');
29
+                ->assertRedirectedTo('login');
30 30
     }
31 31
 }
Please login to merge, or discard this patch.