removed negative test

This commit is contained in:
Vaibhav Sahay
2018-09-29 16:19:45 +05:30
committed by GitHub
parent 575dcc3840
commit ea4b5c8636

View File

@@ -14,13 +14,4 @@ public class MergeSortUnitTest {
Assert.assertArrayEquals(expected, actual);
}
@Test
public void negativeTest() {
int[] actual = { 5, 1, 6, 2, 3, 4 };
int[] expected = { 1, 2, 3, 4, 6, 5 };
MergeSort.mergeSort(actual, actual.length);
Assert.assertArrayEquals(expected, actual);
}
}