Skip to content

Commit 94b1a4a

Browse files
committed
Modifications for unbridged v1.325
1 parent f1647b6 commit 94b1a4a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/test/java/org/kohsuke/aot/AotIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ public class AotIntegrationTest {
3434
@Test
3535
public void testIfAllRequiredClassesAreRegisteredForAot() throws IOException {
3636
Stream<String> providedReflectionConfigStreamOfNames = readAotConfigToStreamOfClassNames(
37-
"./target/classes/META-INF/native-image/org.kohsuke/github-api/reflect-config.json");
37+
"./target/classes/META-INF/native-image/org.kohsuke/github-api-unbridged/reflect-config.json");
3838
Stream<String> providedNoReflectStreamOfNames = Files
3939
.lines(Path.of("./target/test-classes/no-reflect-and-serialization-list"));
4040
Stream<String> providedSerializationStreamOfNames = readAotConfigToStreamOfClassNames(
41-
"./target/classes/META-INF/native-image/org.kohsuke/github-api/serialization-config.json");
41+
"./target/classes/META-INF/native-image/org.kohsuke/github-api-unbridged/serialization-config.json");
4242
Stream<String> providedAotConfigClassNamesPart = Stream
4343
.concat(providedSerializationStreamOfNames,
4444
Stream.concat(providedReflectionConfigStreamOfNames, providedNoReflectStreamOfNames))

0 commit comments

Comments
 (0)