| @@ -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 | } |