Skip to content

Commit 3f288ee

Browse files
committed
Fix TestAotProcessorTests on MS Windows
Closes gh-29103
1 parent b88695a commit 3f288ee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spring-test/src/test/java/org/springframework/test/context/aot/TestAotProcessorTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ private static List<String> findFiles(Path outputPath) throws IOException {
9292
.map(Path::toAbsolutePath)
9393
.map(Path::toString)
9494
.map(path -> path.substring(prefixLength))
95+
.map(path -> path.replace('\\', '/')) // convert Windows path
9596
.toList();
9697
}
9798

0 commit comments

Comments
 (0)