Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehutch committed Mar 8, 2024
1 parent 8835559 commit 8e58d43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private void testDir(final String packageRootPrefix) throws IOException, URISynt
final String packagePath = packageName.replace('.', '/');
final String classFullyQualifiedName = packageName + ".CompiledWithJDK8";
final String classFilePath = classFullyQualifiedName.replace('.', '/') + ".class";
final Path jarPath = Paths.get(getClass().getClassLoader().getResource(classFilePath).toURI());
final Path jarPath = Paths.get(Issue420Test.class.getClassLoader().getResource(classFilePath).toURI());
final Path memFsDirPath = memFs.getPath(packageRootPrefix + packagePath);
Files.createDirectories(memFsDirPath);
final Path memFsFilePath = memFs.getPath(memFsDirPath + "/" + className + ".class");
Expand Down

0 comments on commit 8e58d43

Please sign in to comment.