Skip to content

Commit a7cf506

Browse files
committed
Add missing argument in test
1 parent 454e73d commit a7cf506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public void testContentEquals(
105105
final int last = bytes3.length - 1;
106106
bytes3[last] = reverse(bytes3[last]);
107107
Files.write(bigFile3, bytes3);
108-
try (FileChannel fc1 = open(bigFile1, null); FileChannel fc3 = open(bigFile3, fileChannelType2)) {
108+
try (FileChannel fc1 = open(bigFile1, fileChannelType1); FileChannel fc3 = open(bigFile3, fileChannelType2)) {
109109
assertFalse(FileChannels.contentEquals(fc1, fc3, bufferSize));
110110
assertFalse(FileChannels.contentEquals(reset(fc3), reset(fc1), bufferSize));
111111
// Test just the last byte

0 commit comments

Comments
 (0)