Skip to content

Commit 654b635

Browse files
committed
Fix
1 parent b08ceea commit 654b635

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ void testFindMedianSortedArrays(int[] nums1, int[] nums2, double expectedMedian)
1515
assertEquals(expectedMedian, MedianOfTwoSortedArrays.findMedianSortedArrays(nums1, nums2));
1616
}
1717

18-
// MethodSource that provides test cases as streams of arguments
1918
private static Stream<Arguments> provideTestCases() {
2019
return Stream.of(
2120
// Test case 1: Arrays of equal length

0 commit comments

Comments
 (0)