Skip to content

Commit 9c03ed0

Browse files
committed
comment removed
1 parent c8697a7 commit 9c03ed0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pydatastructs/trees/tests/test_binary_trees.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ def test_cpp_BinaryTree():
2121
assert raises(NotImplementedError, b.search) # Correctly throws NotImplementedError: This is an abstract method
2222
assert str(b) == "[(None, 1, 100, None)]"
2323

24-
# test_cpp_BinaryTree()
25-
2624
def test_cpp_BST1():
2725
b = BinarySearchTree(1,100, backend=Backend.CPP)
2826
assert str(b) == "[(None, 1, 100, None)]"
@@ -41,8 +39,6 @@ def test_cpp_BST1():
4139
b.insert(0,9)
4240
assert str(b) == "[(4, 1, 100, 1), (None, 20, 200, 2), (None, 30, 300, 3), (None, 40, 400, None), (None, 0, 9, None)]"
4341

44-
# test_cpp_BST1()
45-
4642
def test_cpp_BST2():
4743
BST = BinarySearchTree
4844
b = BST(8, 8, backend=Backend.CPP)

0 commit comments

Comments
 (0)