Skip to content

Commit

Permalink
Update ZipWriterTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleene authored May 28, 2024
1 parent 832ae41 commit 52aeb30
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sdk/src/test/java/io/opentdf/platform/sdk/ZipWriterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ public void testWritingLargeFile() throws IOException {
random.nextBytes(buf);
out.write(buf);
}
random.nextBytes(buf);
out.write(buf, 0, random.nextInt(buf.length));
}

var zipFile = File.createTempFile("zip-file", "zip");
Expand Down Expand Up @@ -156,4 +154,4 @@ private static ByteArrayOutputStream getDataStream(ZipFile z, ZipArchiveEntry en
z.getInputStream(entry).transferTo(entry1Data);
return entry1Data;
}
}
}

0 comments on commit 52aeb30

Please sign in to comment.