Completed
Pull Request — master (#113)
by Grégoire
03:16
created
tests/Doctrine/Tests/Persistence/Mapping/RuntimeReflectionServiceTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@
 block discarded – undo
40 40
     public function testGetParentClasses() : void
41 41
     {
42 42
         $classes = $this->reflectionService->getParentClasses(self::class);
43
-        self::assertTrue(count($classes) >= 1, 'The test class ' . self::class . ' should have at least one parent.');
43
+        self::assertTrue(count($classes) >= 1, 'The test class '.self::class.' should have at least one parent.');
44 44
     }
45 45
 
46 46
     public function testGetParentClassesForAbsentClass() : void
47 47
     {
48 48
         $this->expectException(MappingException::class);
49
-        $this->reflectionService->getParentClasses(__NAMESPACE__ . '\AbsentClass');
49
+        $this->reflectionService->getParentClasses(__NAMESPACE__.'\AbsentClass');
50 50
     }
51 51
 
52 52
     public function testGetMethods() : void
Please login to merge, or discard this patch.