Skip to content

Commit d38e21f

Browse files
committed
added tests for brick sort and brick sort parallel for c++ backend
1 parent 3777aa6 commit d38e21f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydatastructs/linear_data_structures/tests/test_algorithms.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ def test_merge_sort_parallel():
8484

8585
def test_brick_sort():
8686
_test_common_sort(brick_sort)
87-
_test_common_search(brick_sort, Backend = Backend.CPP)
87+
_test_common_sort(brick_sort, Backend = Backend.CPP)
8888

8989
def test_brick_sort_parallel():
9090
_test_common_sort(brick_sort_parallel, num_threads=3)
91-
_test_common_search(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
91+
_test_common_sort(brick_sort_parallel, num_threads=3, Backend = Backend.CPP)
9292

9393
def test_heapsort():
9494
_test_common_sort(heapsort)

0 commit comments

Comments
 (0)