Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan-Ved committed Jun 20, 2024
1 parent 1e3443e commit 2262611
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pydatastructs/trees/tests/test_binary_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,6 @@ def _test_SplayTree(backend):
t.join(t1)
assert str(t) == "[(None, 100, 100, None), '', (6, 200, 200, 8), (4, 50, 50, None), (5, 30, 30, None), (None, 20, 20, None), (3, 55, 55, 0), (None, 1000, 1000, None), (7, 2000, 2000, None), '']"

# Create a new traversal object with a different name to avoid segfaults
trav3 = BinaryTreeTraversal(t, backend=backend)
in_order = trav3.depth_first_search(order='in_order')
pre_order = trav3.depth_first_search(order='pre_order')
Expand Down

0 comments on commit 2262611

Please sign in to comment.