This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
The following commit(s) were added to refs/heads/master by this push: new 7eead05 Add missing test. 7eead05 is described below commit 7eead05c527f6cd986dbc09d1c9c3e4103b779f6 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Aug 8 16:45:34 2020 -0400 Add missing test. --- .../commons/compress/archivers/examples/ParameterizedExpanderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/archivers/examples/ParameterizedExpanderTest.java b/src/test/java/org/apache/commons/compress/archivers/examples/ParameterizedExpanderTest.java index 305b5de..a7abe1b 100644 --- a/src/test/java/org/apache/commons/compress/archivers/examples/ParameterizedExpanderTest.java +++ b/src/test/java/org/apache/commons/compress/archivers/examples/ParameterizedExpanderTest.java @@ -75,7 +75,7 @@ public class ParameterizedExpanderTest extends AbstractTestCase { } try (ArchiveOutputStream aos = ArchiveStreamFactory.DEFAULT .createArchiveOutputStream(format, Files.newOutputStream(archive.toPath()))) { - aos.putArchiveEntry(aos.createArchiveEntry(dir, "a")); + aos.putArchiveEntry(aos.createArchiveEntry(dir.toPath(), "a")); aos.closeArchiveEntry(); aos.putArchiveEntry(aos.createArchiveEntry(dir, "a/b")); aos.closeArchiveEntry();