Skip to content

Commit

Permalink
Test fix for unbridged v1.325
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Sep 17, 2024
1 parent 94b1a4a commit bfa107f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/kohsuke/aot/AotIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public void testIfAllRequiredClassesAreRegisteredForAot() throws IOException {
.collect(Collectors.toList());

Stream<String> generatedReflectConfigStreamOfClassNames = readAotConfigToStreamOfClassNames(
"./target/spring-aot/test/resources/META-INF/native-image/org.kohsuke/github-api/reflect-config.json");
"./target/spring-aot/test/resources/META-INF/native-image/org.kohsuke/github-api-unbridged/reflect-config.json");
Stream<String> generatedSerializationStreamOfNames = readAotConfigToStreamOfClassNames(
"./target/spring-aot/test/resources/META-INF/native-image/org.kohsuke/github-api/serialization-config.json");
"./target/spring-aot/test/resources/META-INF/native-image/org.kohsuke/github-api-unbridged/serialization-config.json");
Stream<String> generatedAotConfigClassNames = Stream.concat(generatedReflectConfigStreamOfClassNames,
generatedSerializationStreamOfNames);

Expand Down

0 comments on commit bfa107f

Please sign in to comment.