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
commit 4783996a1a2a55437ec76820dbf71ac0b8356ba5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 30 18:28:48 2025 -0400 Fix file name in disabled test --- .../java/org/apache/commons/compress/archivers/tar/Compress700Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/archivers/tar/Compress700Test.java b/src/test/java/org/apache/commons/compress/archivers/tar/Compress700Test.java index 1a4cefe07..69cb90df7 100644 --- a/src/test/java/org/apache/commons/compress/archivers/tar/Compress700Test.java +++ b/src/test/java/org/apache/commons/compress/archivers/tar/Compress700Test.java @@ -40,7 +40,7 @@ public class Compress700Test { @Ignore @Test public void testTarArchive() throws Exception { - final Path fileToTest = Paths.get("src/test/resources/org/apache/commons/compress/COMPRESS-700/flutter_awesome_buttons-0.1.0.tar"); + final Path fileToTest = Paths.get("src/test/resources/org/apache/commons/compress/COMPRESS-700/flutter_awesome_buttons-0.1.0-fail.tar"); try (BufferedInputStream fileInputStream = new BufferedInputStream(Files.newInputStream(fileToTest))) { assertEquals(ArchiveStreamFactory.TAR, ArchiveStreamFactory.detect(fileInputStream)); }