From 1c4efab1861860429e41f7c1433c97b63c0d0de3 Mon Sep 17 00:00:00 2001 From: Ravinder Khangura <38717332+ravinderkhangura@users.noreply.github.com> Date: Thu, 21 Oct 2021 19:35:06 -0400 Subject: [PATCH] Update test_recursive.py test method --- src/recursive_sorting/test_recursive.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()