Skip to content

Commit f29fd30

Browse files
committed
selsort
1 parent e757622 commit f29fd30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/selection_sortTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def test_selection_sort(test):
1414
"""functie `selection_sort` werkt correct"""
1515
assert getFunction("selection_sort")([1,2,3]) == [1,2,3]
1616
assert getFunction("selection_sort")([3,2,1]) == [1,2,3]
17+
assert getFunction("selection_sort")([1,3,2,4]) == [1,2,3,4]
1718
assert getFunction("selection_sort")([]) == []
18-
assert getFunction("selection_sort")([[1],[3],[2]]) == [[1],[2],[3]]

0 commit comments

Comments
 (0)