Skip to content

Commit 2646f27

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 48c6cbd commit 2646f27

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tests/test_sorts.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from sorts.heap_sort import heap_sort
22

3+
34
def test_heap_sort():
45
assert heap_sort([]) == []
56
assert heap_sort([1]) == [1]
6-
assert heap_sort([5,2,5,1]) == [1,2,5,5]
7-
assert heap_sort([1,2,3,4]) == [1,2,3,4]
8-
assert heap_sort([5,4,3,2,1]) == [1,2,3,4,5]
7+
assert heap_sort([5, 2, 5, 1]) == [1, 2, 5, 5]
8+
assert heap_sort([1, 2, 3, 4]) == [1, 2, 3, 4]
9+
assert heap_sort([5, 4, 3, 2, 1]) == [1, 2, 3, 4, 5]

0 commit comments

Comments
 (0)