From e28a5ce20f0761c53eea85cf48403b79821bc766 Mon Sep 17 00:00:00 2001 From: Kishan-Ved Date: Tue, 2 Jul 2024 17:33:23 +0530 Subject: [PATCH] check --- pydatastructs/trees/tests/test_binary_trees.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydatastructs/trees/tests/test_binary_trees.py b/pydatastructs/trees/tests/test_binary_trees.py index e74b371c..a0c9fd12 100644 --- a/pydatastructs/trees/tests/test_binary_trees.py +++ b/pydatastructs/trees/tests/test_binary_trees.py @@ -348,7 +348,7 @@ def test_select_rank(expected_output): output.append(a5.rank(expected_output[i])) assert output == expected_ranks - test_select_rank([2, 3, 5, 9, 10, 11, 12, 13, 15, 17, 18, 20, 30, 33]) + # test_select_rank([2, 3, 5, 9, 10, 11, 12, 13, 15, 17, 18, 20, 30, 33]) a5.delete(9) a5.delete(13) a5.delete(20)