Skip to content

Commit

Permalink
fixing CI x2
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tveevm committed Oct 30, 2024
1 parent df7d625 commit dbb2fec
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions timsort/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,8 @@ def test_duplicates(self):
timsort(arr)
self.assertEqual(arr, [1, 1, 2, 2, 3, 3])


def test_large_array(self):
arr = list(range(10000, 0, -1))
expected = sorted(arr)
timsort(arr)
self.assertEqual(arr, expected)



0 comments on commit dbb2fec

Please sign in to comment.