Completed
Push — master ( 8bc2ca...1a19ee )
by Harry
03:41
created
tests/unit/Format/FormatAwareTraitTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $this->formatAware->setFormat($format);
33 33
 
34 34
         $format->shouldReceive('getType')
35
-               ->andReturn('test_format');
35
+                ->andReturn('test_format');
36 36
 
37 37
         static::assertEquals('test_format', $this->formatAware->getFormatType());
38 38
     }
Please login to merge, or discard this patch.
tests/unit/Node/FileNodeTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
         $file = new FileNode($fileSystem, 'not/exists');
17 17
 
18 18
         $fileSystem->shouldReceive('has')
19
-                   ->with('not/exists')
20
-                   ->andReturn(false);
19
+                    ->with('not/exists')
20
+                    ->andReturn(false);
21 21
 
22 22
         static::assertEquals([], $file->getContents());
23 23
     }
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
         $newPath = new FileNode($fileSystem, 'some/target');
31 31
 
32 32
         $fileSystem->shouldReceive('copy')
33
-                   ->with($localFile->getPath(), $newPath->getPath())
34
-                   ->andReturn(false);
33
+                    ->with($localFile->getPath(), $newPath->getPath())
34
+                    ->andReturn(false);
35 35
 
36 36
         $this->expectException(CopyFailedException::class);
37 37
 
Please login to merge, or discard this patch.