@@ -14,28 +14,28 @@ |
||
14 | 14 | public function fileProvider() |
15 | 15 | { |
16 | 16 | return [ |
17 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt")] |
|
17 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt") ] |
|
18 | 18 | ]; |
19 | 19 | } |
20 | 20 | |
21 | 21 | public function directoryProvider() |
22 | 22 | { |
23 | 23 | return [ |
24 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test/")] |
|
24 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test/") ] |
|
25 | 25 | ]; |
26 | 26 | } |
27 | 27 | |
28 | 28 | public function fileLinkProvider() |
29 | 29 | { |
30 | 30 | return [ |
31 | - [new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link"] |
|
31 | + [ new File(dirname(__FILE__) . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link" ] |
|
32 | 32 | ]; |
33 | 33 | } |
34 | 34 | |
35 | 35 | public function tmpFileProvider() |
36 | 36 | { |
37 | 37 | return [ |
38 | - [new File("/tmp/file-test-tmp.txt")] |
|
38 | + [ new File("/tmp/file-test-tmp.txt") ] |
|
39 | 39 | ]; |
40 | 40 | } |
41 | 41 | } |