Skip to content

Commit a8ae7a1

Browse files
committed
Fix Gradle AOT integration test on Windows
See gh-31970
1 parent 4a00d76 commit a8ae7a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/plugin/SpringBootAotPluginIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void generateAotSourcesHasLibraryResourcesOnItsClasspath() throws IOException {
6363
@TestTemplate
6464
void generateAotSourcesHasTransitiveRuntimeDependenciesOnItsClasspath() {
6565
String output = this.gradleBuild.build("generateAotSourcesClasspath").getOutput();
66-
assertThat(output).contains("org.jboss.logging/jboss-logging");
66+
assertThat(output).contains("org.jboss.logging" + File.separatorChar + "jboss-logging");
6767
}
6868

6969
}

0 commit comments

Comments
 (0)