Skip to content

Commit 0fe1013

Browse files
moacirrfmoacirrf
authored andcommitted
Fix unit test
1 parent 3f7fe06 commit 0fe1013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/mrf/javadecompiler/filesystems/FileSystemHelperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void test_findResource_inside_jar() throws IOException {
8181
FileSystemHelper instance = FileSystemHelper.of(new JarFileSystem(jar.toFile()).findResource("teste.class"));
8282

8383
FileObject result = instance.findResource("teste.class");
84-
assertNull(result);
84+
assertNotNull(result);
8585
}
8686

8787
private void createJarFile(Path fileName) throws IOException {

0 commit comments

Comments
 (0)