Completed
Push — master ( bccc4f...6cada5 )
by Nicolas
04:30
created
tests/JsonTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
     public function setUp()
13 13
     {
14 14
         parent::setUp();
15
-        $path = __DIR__ . '/stubs/module.json';
15
+        $path = __DIR__.'/stubs/module.json';
16 16
         $this->json = new Json($path, $this->app['files']);
17 17
     }
18 18
 
19 19
     /** @test */
20 20
     public function it_gets_the_file_path()
21 21
     {
22
-        $path = __DIR__ . '/stubs/module.json';
22
+        $path = __DIR__.'/stubs/module.json';
23 23
 
24 24
         $this->assertEquals($path, $this->json->getPath());
25 25
     }
Please login to merge, or discard this patch.