@@ -32,7 +32,7 @@ |
||
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 | } |
@@ -16,8 +16,8 @@ discard block |
||
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 |
||
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 |