Skip to content

Commit bc17c41

Browse files
committed
sprsort
1 parent 2ede3f0 commit bc17c41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/selection_sortTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ def test_selection_sort(test):
1515
assert getFunction("selection_sort")([1,2,3]) == [1,2,3]
1616
assert getFunction("selection_sort")([3,2,1]) == [1,2,3]
1717
assert getFunction("selection_sort")([1,3,2,4]) == [1,2,3,4]
18-
assert getFunction("selection_sort")([]) == []:
19-
18+
assert getFunction("selection_sort")([]) == []
19+

0 commit comments

Comments
 (0)