Completed
Push — master ( 9c4ce9...109946 )
by Jivesh
10:33
created
tests/Feature/SendTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function testFailedSlackRequestWithEmptyMessage()
14 14
     {
15
-    	Slack::send();
15
+        Slack::send();
16 16
     }
17 17
 
18 18
     public function testFailedSlackRequestWithWrongEndpoint()
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function testSuccessfulSlackRequest()
27 27
     {
28
-    	config(['slack.incoming-webhook' => env('SAMPLE_WEBHOOK')]);
28
+        config(['slack.incoming-webhook' => env('SAMPLE_WEBHOOK')]);
29 29
 
30
-    	$response = Slack::send('hi');
30
+        $response = Slack::send('hi');
31 31
 
32
-    	$this->assertEquals(200, $response->getStatusCode());
32
+        $this->assertEquals(200, $response->getStatusCode());
33 33
     }
34 34
 }
Please login to merge, or discard this patch.