Completed
Push — master ( 2aa9a3...700ecc )
by Jake
05:25 queued 02:28
created
tests/AdminControllerTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
         $user = factory(App\User::class)->create();
19 19
         
20 20
         $this->actingAs($user, 'admin')
21
-             ->call('GET', 'admin')
22
-             ->see('Waddup, y\'all');
21
+                ->call('GET', 'admin')
22
+                ->see('Waddup, y\'all');
23 23
     }
24 24
     
25 25
     /**
@@ -30,6 +30,6 @@  discard block
 block discarded – undo
30 30
     public function test_redirects_to_login_if_user_is_not_authenticated ()
31 31
     {
32 32
         $this->call('GET', 'admin')
33
-             ->assertRedirectedTo('login');
33
+                ->assertRedirectedTo('login');
34 34
     }
35 35
 }
36 36
\ No newline at end of file
Please login to merge, or discard this patch.