Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbllmnn committed May 15, 2020
1 parent 882e3c4 commit 1486bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/de/terrestris/utils/io/ZipUtilsTest.java
Expand Up @@ -40,7 +40,7 @@ public void testUnzipReplace() throws IOException {
in.close();
out.close();
File target = new File(zipFile.getParent(), "child");
ZipUtils.unzip(zipFile.toString(), target.toString(), true);
ZipUtils.unzip(zipFile, target, true);
String result = IOUtils.toString(new FileInputStream(new File(target, "test/sub/content")), StandardCharsets.UTF_8);
Assert.assertEquals("content", result);
Path dir = new File(target, "test/sub/content").toPath();
Expand Down

0 comments on commit 1486bd3

Please sign in to comment.