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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

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);
}
}