Fix TestAotProcessorTests on MS Windows

Closes gh-29103
This commit is contained in:
Sam Brannen 2022-09-08 11:50:25 +02:00
parent b88695a36e
commit 3f288eea17
1 changed files with 1 additions and 0 deletions

View File

@ -92,6 +92,7 @@ class TestAotProcessorTests extends AbstractAotTests {
.map(Path::toAbsolutePath)
.map(Path::toString)
.map(path -> path.substring(prefixLength))
.map(path -> path.replace('\\', '/')) // convert Windows path
.toList();
}