PostelnicuGeorge commented on a change in pull request #236: URL: https://github.com/apache/commons-compress/pull/236#discussion_r774538442
########## File path: src/test/java/org/apache/commons/compress/archivers/zip/ZipSplitOutputStreamTest.java ########## @@ -69,19 +69,19 @@ public void splitZipBeginsWithZipSplitSignature() throws IOException { public void testCreateSplittedFiles() throws IOException { final File testOutputFile = new File(dir, "testCreateSplittedFiles.zip"); final int splitSize = 100 * 1024; /* 100KB */ - final ZipSplitOutputStream zipSplitOutputStream = new ZipSplitOutputStream(testOutputFile, splitSize); + final ZipSplitOutputStream ZipSplitOutputStream = new ZipSplitOutputStream(testOutputFile, splitSize); Review comment: My mistake, don't know how this happened or why I modified this test :/ ########## File path: src/test/java/org/apache/commons/compress/archivers/zip/ZipSplitOutputStreamTest.java ########## @@ -69,19 +69,19 @@ public void splitZipBeginsWithZipSplitSignature() throws IOException { public void testCreateSplittedFiles() throws IOException { final File testOutputFile = new File(dir, "testCreateSplittedFiles.zip"); final int splitSize = 100 * 1024; /* 100KB */ - final ZipSplitOutputStream zipSplitOutputStream = new ZipSplitOutputStream(testOutputFile, splitSize); + final ZipSplitOutputStream ZipSplitOutputStream = new ZipSplitOutputStream(testOutputFile, splitSize); final File fileToTest = getFile("COMPRESS-477/split_zip_created_by_zip/zip_to_compare_created_by_zip.zip"); final InputStream inputStream = Files.newInputStream(fileToTest.toPath()); final byte[] buffer = new byte[4096]; int readLen; while ((readLen = inputStream.read(buffer)) > 0) { - zipSplitOutputStream.write(buffer, 0, readLen); + ZipSplitOutputStream.write(buffer, 0, readLen); Review comment: My mistake, don't know how this happened or why I modified this test :/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org