Passed
Push — master ( af2957...e6274a )
by Sebastian
02:57
created
tests/Camino/Path/DirectoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function testIsSubdirectoryPositive(): void
67 67
     {
68
-        $dir     = new Directory('/foo/bar/baz');
68
+        $dir = new Directory('/foo/bar/baz');
69 69
         $this->assertTrue($dir->isSubDirectoryOf(new Directory('/foo/bar')));
70 70
         $this->assertTrue($dir->isSubDirectoryOf(new Directory('/foo')));
71 71
         $this->assertTrue($dir->isSubDirectoryOf(new Directory('/')));
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function testIsSubdirectoryNegative(): void
78 78
     {
79
-        $dir    = new Directory('/foo/bar');
79
+        $dir = new Directory('/foo/bar');
80 80
         $this->assertFalse($dir->isSubDirectoryOf(new Directory('/foo/bar/baz')));
81 81
         $this->assertFalse($dir->isSubDirectoryOf(new Directory('/fiz')));
82 82
         $this->assertFalse($dir->isSubDirectoryOf(new Directory('/fiz/baz')));
Please login to merge, or discard this patch.