Passed
Pull Request — master (#77)
by Andreas
07:59 queued 05:43
created
tests/Doctrine/Tests/Persistence/Mapping/AnnotationDriverTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.