Completed
Push — master ( 7af328...5e661d )
by Jacob
11:47 queued 13s
created
tests/unit/DisplayTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -277,15 +277,15 @@  discard block
 block discarded – undo
277 277
     public function testGetFilePath()
278 278
     {
279 279
         $display = new Display(array('relative_path' => false));
280
-        $path = getcwd() . '/puppies';
280
+        $path = getcwd().'/puppies';
281 281
         $reflectedFilePath = $this->getAccessibleMethod($display, 'getFilePath');
282 282
         $path = $reflectedFilePath->invokeArgs($display, array($path));
283
-        $expectedPath = getcwd() . '/puppies';
283
+        $expectedPath = getcwd().'/puppies';
284 284
 
285 285
         $this->assertEquals($expectedPath, $path);
286 286
 
287 287
         $display = new Display();
288
-        $path = getcwd() . '/puppies';
288
+        $path = getcwd().'/puppies';
289 289
         $reflectedFilePath = $this->getAccessibleMethod($display, 'getFilePath');
290 290
         $path = $reflectedFilePath->invokeArgs($display, array($path));
291 291
         $expectedPath = '/puppies';
@@ -479,11 +479,11 @@  discard block
 block discarded – undo
479 479
             array(
480 480
                 'data' => array(
481 481
                     array(
482
-                        'name' => getcwd() . '/test-file',
482
+                        'name' => getcwd().'/test-file',
483 483
                         'size' => 1234
484 484
                     ),
485 485
                     array(
486
-                        'name' => getcwd() . '/test-file-2',
486
+                        'name' => getcwd().'/test-file-2',
487 487
                         'size' => 66
488 488
                     )
489 489
                 ),
Please login to merge, or discard this patch.