This is an automated email from the ASF dual-hosted git repository. peterlee 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 3b28227 COMPRESS-554 : update name of testcase 3b28227 is described below commit 3b28227a5ebed06f15e5706a4d5801c46549d72c Author: PeterAlfredLee <peteralfred...@gmail.com> AuthorDate: Tue Sep 1 16:19:41 2020 +0800 COMPRESS-554 : update name of testcase --- .../commons/compress/archivers/tar/TarArchiveInputStreamTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStreamTest.java b/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStreamTest.java index 17f4728..d7b5396 100644 --- a/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStreamTest.java +++ b/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStreamTest.java @@ -461,7 +461,7 @@ public class TarArchiveInputStreamTest extends AbstractTestCase { } @Test(expected = IOException.class) - public void stCompress554() throws IOException { + public void testThrowExceptionWithNullEntry() throws IOException { try (FileInputStream in = new FileInputStream(getFile("./COMPRESS-554.tar")); TarArchiveInputStream archive = new TarArchiveInputStream(in)) { while (archive.getNextTarEntry() != null) {