@@ -31,8 +31,8 @@ |
||
31 | 31 | $this->logger->setLogger($logger); |
32 | 32 | |
33 | 33 | $logger->shouldReceive('log') |
34 | - ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', []) |
|
35 | - ->once(); |
|
34 | + ->with(LogLevel::INFO, 'Graze\DataFile\Test\Helper\FakeOptionalLogger: some text', []) |
|
35 | + ->once(); |
|
36 | 36 | |
37 | 37 | $this->logger->doLog('some text'); |
38 | 38 | } |
@@ -17,8 +17,8 @@ |
||
17 | 17 | $directory = new FileNode($fileSystem, 'random/path'); |
18 | 18 | |
19 | 19 | $fileSystem->shouldReceive('createDir') |
20 | - ->with($directory->getDirectory(), ['visibility' => 'public']) |
|
21 | - ->andReturn(false); |
|
20 | + ->with($directory->getDirectory(), ['visibility' => 'public']) |
|
21 | + ->andReturn(false); |
|
22 | 22 | $this->expectException(MakedirectoryFailedException::class); |
23 | 23 | |
24 | 24 | $maker = new MakeDirectory(); |
@@ -17,8 +17,8 @@ |
||
17 | 17 | $file = new FileNode($fileSystem, 'not/exists'); |
18 | 18 | |
19 | 19 | $fileSystem->shouldReceive('has') |
20 | - ->with('not/exists') |
|
21 | - ->andReturn(false); |
|
20 | + ->with('not/exists') |
|
21 | + ->andReturn(false); |
|
22 | 22 | |
23 | 23 | static::assertEquals([], $file->getContents()); |
24 | 24 | } |