File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
processing/src/test/java/org/apache/druid/java/util/common Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ public InputStream openStream()
602602 }
603603 };
604604
605- Assert .assertEquals (( long ) ( EXPECTED .length * 3 ) , CompressionUtils .gunzip (inputStreamFactory , testFile ).size ());
605+ Assert .assertEquals (EXPECTED .length * 3 , CompressionUtils .gunzip (inputStreamFactory , testFile ).size ());
606606
607607 try (final InputStream inputStream = new FileInputStream (testFile )) {
608608 try (final ByteArrayOutputStream outputStream = new ByteArrayOutputStream (EXPECTED .length * 3 )) {
@@ -624,7 +624,6 @@ public InputStream openStream()
624624 // http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7036144
625625 public void testGunzipBugStreamWorkarround () throws IOException
626626 {
627-
628627 final ByteArrayOutputStream tripleGzByteStream = new ByteArrayOutputStream (GZ_BYTES .length * 3 );
629628 tripleGzByteStream .write (GZ_BYTES );
630629 tripleGzByteStream .write (GZ_BYTES );
You can’t perform that action at this time.
0 commit comments