Skip to content

Commit ba92425

Browse files
committed
Lower test chunk size to fix failure in CI
1 parent fd1bf1e commit ba92425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/maxmind/db/ReaderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static IntStream chunkSizes() {
5959
// that are too big to fit in the heap.
6060
// We use half of that just to be sure nothing breaks, but big enough that we
6161
// ensure SingleBuffer is tested too using the test MMDBs.
62-
MultiBuffer.DEFAULT_CHUNK_SIZE / 2,
62+
MultiBuffer.DEFAULT_CHUNK_SIZE / 4,
6363
};
6464
return IntStream.of(sizes);
6565
}

0 commit comments

Comments
 (0)