removed negative test

This commit is contained in:
Vaibhav Sahay
2018-09-29 15:37:34 +05:30
committed by GitHub
parent 5db1d97f8f
commit d01ab8e3eb

View File

@@ -15,12 +15,4 @@ class MergeSortTest {
assertArrayEquals(expected, input); assertArrayEquals(expected, input);
} }
@Test
void negativeTest() {
int[] input = { 5, 1, 6, 2, 3, 4 };
int[] expected = { 1, 2, 3, 4, 6 ,5};
MergeSort.mergeSort(input, input.length);
assertArrayEquals(expected, input);
}
} }