Skip to content

Commit

Permalink
Add missing type.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Aug 27, 2023
1 parent c64c518 commit dc5970d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public void testMissingDependency() throws IOException {
File jar = temporaryFolder.newFile("source.jar");
JarOutputStream outputStream = new JarOutputStream(new FileOutputStream(jar));
try {
for (Class<?> type : Arrays.asList(TypeWithDependency.class, TypeWithoutDependency.class)) {
for (Class<?> type : Arrays.asList(
PluginEngineDefaultOtherTest.class,
TypeWithDependency.class,
TypeWithoutDependency.class)) {
outputStream.putNextEntry(new JarEntry(type.getName().replace(".", "/") + ".class"));
outputStream.write(ClassFileLocator.ForClassLoader.read(type));
outputStream.closeEntry();
Expand Down

0 comments on commit dc5970d

Please sign in to comment.