Skip to content

Commit b08ceea

Browse files
committed
Fix
1 parent e6c1f7b commit b08ceea

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/thealgorithms/divideandconquer/MedianOfTwoSortedArraysTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ private static Stream<Arguments> provideTestCases() {
3737
Arguments.of(new int[] {}, new int[] {0}, 0.0),
3838

3939
// Test case 7: Same element arrays
40-
Arguments.of(new int[] {2, 2, 2}, new int[] {2, 2, 2}, 2.0)
41-
);
40+
Arguments.of(new int[] {2, 2, 2}, new int[] {2, 2, 2}, 2.0));
4241
}
4342
}

0 commit comments

Comments
 (0)