Skip to content

Commit 9f755dc

Browse files
committed
modified tree_sort
1 parent 9a90a70 commit 9f755dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_sorting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_cocktail_shaker_sort(self):
3535
self.assertEqual([-44, 1, 2, 3, 7, 19], cocktail_shaker_sort([7, 3, 2, 19, -44, 1]))
3636

3737
def tree_sort(self):
38-
self.assertEqual([-44, 1, 2, 3, 7, 19], tree_sort([7, 3, 2, 19, -44, 1]))
38+
self.assertEqual([-44, 1, 2, 3, 7, 19], tree_sort([7, 3, 2, 19, -44, 1]))
3939

4040

4141
if __name__ == "__main__":

0 commit comments

Comments
 (0)