Test Setup Failed
Push — master ( 1b9e42...5af7b3 )
by Haridarshan
03:37
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-require __DIR__ . '/../vendor/autoload.php';
2
+require __DIR__.'/../vendor/autoload.php';
3 3
 
4 4
 define('CLIENT_ID', getenv('TEST_CLIENT_ID'));
5 5
 define('CLIENT_SECRET', getenv('TEST_CLIENT_SECRET'));
Please login to merge, or discard this patch.
tests/InstagramTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 		$this->instagram = new Instagram(CLIENT_ID, CLIENT_SECRET, CALLBACK_URL);	
11 11
 	}
12 12
 	
13
-	public function testBuildClient(){
13
+	public function testBuildClient() {
14 14
 		$this->assertObjectHasAttribute('client_id', $this->instagram);		
15 15
 		$this->assertObjectHasAttribute('client_secret', $this->instagram);		
16 16
 		$this->assertObjectHasAttribute('callback_url', $this->instagram);
Please login to merge, or discard this patch.