diff --git a/src/recursive_sorting/test_recursive.py b/src/recursive_sorting/test_recursive.py index 576d3c87..43024a39 100644 --- a/src/recursive_sorting/test_recursive.py +++ b/src/recursive_sorting/test_recursive.py @@ -3,6 +3,7 @@ from recursive_sorting import * class RecursiveSortingTests(unittest.TestCase): + #test method def test_merge_sort(self): arr1 = [1, 5, 8, 4, 2, 9, 6, 0, 3, 7] arr2 = [] @@ -39,4 +40,4 @@ def test_merge_sort(self): if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main()