We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3777aa6 commit d38e21fCopy full SHA for d38e21f
pydatastructs/linear_data_structures/tests/test_algorithms.py
@@ -84,11 +84,11 @@ def test_merge_sort_parallel():
84
85
def test_brick_sort():
86
_test_common_sort(brick_sort)
87
- _test_common_search(brick_sort, Backend = Backend.CPP)
+ _test_common_sort(brick_sort, Backend = Backend.CPP)
88
89
def test_brick_sort_parallel():
90
_test_common_sort(brick_sort_parallel, num_threads=3)
91
- _test_common_search(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
+ _test_common_sort(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
92
93
def test_heapsort():
94
_test_common_sort(heapsort)
0 commit comments