Completed
Pull Request — master (#23)
by Zac
02:06
created
src/Tests/Unit/Factory/FileSystemFactoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $this->factory = new FileSystemFactory('amazon_s3', $this->config, '/tmp');
70 70
 
71 71
         $s3Adaptor = $this->factory->build('amazon_s3');
72
-        $this->assertInstanceOf('Partnermarketing\FileSystemBundle\Adapter\AmazonS3',$s3Adaptor);
72
+        $this->assertInstanceOf('Partnermarketing\FileSystemBundle\Adapter\AmazonS3', $s3Adaptor);
73 73
     }
74 74
     
75 75
     public function testDefaultsTempDirCorrectly()
@@ -93,6 +93,6 @@  discard block
 block discarded – undo
93 93
         
94 94
         $adapter->delete($initFile);
95 95
         $adapter->delete($tmpFile);
96
-        $adapter->delete(substr($tmpFile, 0 , (strrpos($tmpFile, "."))));
96
+        $adapter->delete(substr($tmpFile, 0, (strrpos($tmpFile, "."))));
97 97
     }
98 98
 }
Please login to merge, or discard this patch.