Skip to content

Commit 53674e9

Browse files
committed
Reduce test fixture size
- Local build OK - Failed GH CI
1 parent 5d3322b commit 53674e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/org/apache/commons/io/RandomAccessFilesTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void testContentEquals(final RandomAccessFileMode mode) throws IOExceptio
8888
final Path bigFile3 = Files.createTempFile(getClass().getSimpleName(), "-3.bin");
8989
try {
9090
// This length must match any restriction from the Surefire configuration.
91-
final int newLength = 5_000_000;
91+
final int newLength = 2_000_000;
9292
final byte[] bytes1 = new byte[newLength];
9393
final byte[] bytes2 = new byte[newLength];
9494
// Make sure bytes1 and bytes2 are different despite the shuffle

src/test/java/org/apache/commons/io/channels/FileChannelsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testContentEquals(final int bufferSize) throws IOException {
7070
final Path bigFile3 = Files.createTempFile(getClass().getSimpleName(), "-3.bin");
7171
try {
7272
// This length must match any restriction from the Surefire configuration.
73-
final int newLength = 5_000_000;
73+
final int newLength = 2_000_000;
7474
final byte[] bytes1 = new byte[newLength];
7575
final byte[] bytes2 = new byte[newLength];
7676
// Make sure bytes1 and bytes2 are different despite the shuffle

0 commit comments

Comments
 (0)