Skip to content

Commit 7e04048

Browse files
authored
Update tests/test_sorts.py
1 parent f240475 commit 7e04048

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_sorts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def test_binary_insertion_sort_rejects_non_comparable_items():
9696

9797
@pytest.mark.parametrize(
9898
"sort",
99-
(bubble_sort_iterative, bubble_sort_recursive),
99+
[bubble_sort_iterative, bubble_sort_recursive],
100100
ids=lambda f: f.__name__,
101101
)
102102
def test_bubble_sort_rejects_non_comparable_items(sort):

0 commit comments

Comments
 (0)