@@ -23,13 +23,13 @@ discard block |
||
23 | 23 | public function testAddGetPaths() : void |
24 | 24 | { |
25 | 25 | self::assertSame([ |
26 | - __DIR__ . '/_files/annotation', |
|
26 | + __DIR__.'/_files/annotation', |
|
27 | 27 | ], $this->driver->getPaths()); |
28 | 28 | |
29 | 29 | $this->driver->addPaths(['/test/path1', '/test/path2']); |
30 | 30 | |
31 | 31 | self::assertSame([ |
32 | - __DIR__ . '/_files/annotation', |
|
32 | + __DIR__.'/_files/annotation', |
|
33 | 33 | '/test/path1', |
34 | 34 | '/test/path2', |
35 | 35 | ], $this->driver->getPaths()); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | $this->driver = new SimpleAnnotationDriver( |
83 | 83 | $this->reader, |
84 | - [__DIR__ . '/_files/annotation'] |
|
84 | + [__DIR__.'/_files/annotation'] |
|
85 | 85 | ); |
86 | 86 | } |
87 | 87 | } |