Skip to content

Commit dd27302

Browse files
committed
Trigger build
1 parent f2be867 commit dd27302

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

processing/src/test/java/org/apache/druid/java/util/common/CompressionUtilsTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)