Skip to content

Commit b7b2554

Browse files
committed
Attempt fixing windows CI
1 parent 80dcee2 commit b7b2554

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ClassMapGeneratorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ public function testGetRawPSR4Violations(): void
283283
$classMap = $this->generator->getClassMap();
284284
$rawViolations = $classMap->getRawPsrViolations();
285285

286-
$classWithoutNameSpaceFilepath = __DIR__ . '/Fixtures/psrViolations/ClassWithoutNameSpace.php';
287-
$classWithIncorrectSubNamespaceFilepath = __DIR__ . '/Fixtures/psrViolations/ClassWithIncorrectSubNamespace.php';
288-
$classWithNameSpaceOutsideConfiguredScopeFilepath = __DIR__ . '/Fixtures/psrViolations/ClassWithNameSpaceOutsideConfiguredScope.php';
286+
$classWithoutNameSpaceFilepath = realpath(__DIR__) . '/Fixtures/psrViolations/ClassWithoutNameSpace.php';
287+
$classWithIncorrectSubNamespaceFilepath = realpath(__DIR__) . '/Fixtures/psrViolations/ClassWithIncorrectSubNamespace.php';
288+
$classWithNameSpaceOutsideConfiguredScopeFilepath = realpath(__DIR__) . '/Fixtures/psrViolations/ClassWithNameSpaceOutsideConfiguredScope.php';
289289

290290
self::assertArrayHasKey($classWithoutNameSpaceFilepath, $rawViolations);
291291
self::assertCount(1, $rawViolations[$classWithoutNameSpaceFilepath]);

0 commit comments

Comments
 (0)