@@ -277,15 +277,15 @@ discard block |
||
| 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 |
||
| 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 | ), |