Completed
Push — master ( 87f2c0...417e03 )
by Jake
08:53 queued 06:35
created
tests/AdminControllerTest.php 1 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.
tests/config/app.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 return array( 
4 4
 
5
-   'providers' => append_config(array( 
6
-       'MeestorHok\Blue'
7
-   )), 
5
+    'providers' => append_config(array( 
6
+        'MeestorHok\Blue'
7
+    )), 
8 8
 
9 9
 );
Please login to merge, or discard this patch.