We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b88695a commit 3f288eeCopy full SHA for 3f288ee
spring-test/src/test/java/org/springframework/test/context/aot/TestAotProcessorTests.java
@@ -92,6 +92,7 @@ private static List<String> findFiles(Path outputPath) throws IOException {
92
.map(Path::toAbsolutePath)
93
.map(Path::toString)
94
.map(path -> path.substring(prefixLength))
95
+ .map(path -> path.replace('\\', '/')) // convert Windows path
96
.toList();
97
}
98
0 commit comments