You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/18 09:59:03 UTC

[commons-compress] 01/02: bad test case name

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git

commit ad9b4244607aaca0eb77c54219515c28c52839e7
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Sun Aug 18 10:37:00 2019 +0200

    bad test case name
---
 .../java/org/apache/commons/compress/archivers/ZipTestCase.java   | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/commons/compress/archivers/ZipTestCase.java b/src/test/java/org/apache/commons/compress/archivers/ZipTestCase.java
index 1d0b151..6083b41 100644
--- a/src/test/java/org/apache/commons/compress/archivers/ZipTestCase.java
+++ b/src/test/java/org/apache/commons/compress/archivers/ZipTestCase.java
@@ -195,13 +195,7 @@ public final class ZipTestCase extends AbstractTestCase {
      * >COMPRESS-93</a>.
      */
     @Test
-    public void testSupportedCompressionMethod() throws IOException {
-        /*
-        ZipFile bla = new ZipFile(getFile("bla.zip"));
-        assertTrue(bla.canReadEntryData(bla.getEntry("test1.xml")));
-        bla.close();
-        */
-
+    public void testTokenizationCompressionMethod() throws IOException {
         final ZipFile moby = new ZipFile(getFile("moby.zip"));
         final ZipArchiveEntry entry = moby.getEntry("README");
         assertEquals("method", ZipMethod.TOKENIZATION.getCode(), entry.getMethod());