From 5337bae4e4be46aeb2edcaa77808fa4ee8a50491 Mon Sep 17 00:00:00 2001 From: Kishan-Ved Date: Wed, 17 Jul 2024 12:06:06 +0530 Subject: [PATCH] Update --- 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 cfe72450..e8f8748c 100644 --- a/pydatastructs/trees/tests/test_binary_trees.py +++ b/pydatastructs/trees/tests/test_binary_trees.py @@ -389,7 +389,7 @@ def test_AVLTree(): _test_AVLTree(backend=Backend.PYTHON) def test_cpp_AVLTree(): _test_AVLTree(backend=Backend.CPP) -test_cpp_AVLTree() + def _test_BinaryIndexedTree(backend): FT = BinaryIndexedTree