Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Sep 11, 2024
1 parent 3f52876 commit e359004
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ void testAvailableLong() throws IOException {
combined.addAll(data2);
final var stream = new ByteArrayListInputStream(combined);
assertEquals(Integer.MAX_VALUE - 8 + (long) BUFFER_SIZE, stream.availableLong());
assertEquals(Integer.MAX_VALUE, stream.available());
assertEquals(Integer.MAX_VALUE - 8, stream.available());
}
}

0 comments on commit e359004

Please sign in to comment.