Test Failed
Push — master ( 9bf844...efe5ed )
by Waaaaaaaaaa
03:38
created
tests/FrameTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         $frame->setFile(__FILE__);
24 24
         $frame->setPath(__DIR__.'/../tests');
25
-        $this->assertEquals(__DIR__ .'/', $frame->getPath());
25
+        $this->assertEquals(__DIR__.'/', $frame->getPath());
26 26
         $this->assertTrue($frame->hasPath());
27 27
         $this->assertEquals(basename(__FILE__), $frame->getRelativeFilepath());
28 28
     }
Please login to merge, or discard this patch.
src/PathTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
             throw new \InvalidArgumentException('Path does not exist: '.$path);
25 25
         }
26 26
 
27
-        $this->path = $realpath . '/';
27
+        $this->path = $realpath.'/';
28 28
     }
29 29
 }
Please login to merge, or discard this patch.