summaryrefslogtreecommitdiff
path: root/test/git/async/test_graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/async/test_graph.py')
-rw-r--r--test/git/async/test_graph.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/git/async/test_graph.py b/test/git/async/test_graph.py
index ca17d6e6..1a153e2d 100644
--- a/test/git/async/test_graph.py
+++ b/test/git/async/test_graph.py
@@ -54,7 +54,8 @@ class TestGraph(TestBase):
# deleting a connected node clears its neighbour connections
assert n3.in_nodes[0] is n2
- g.del_node(n2)
+ assert g.del_node(n2) is g
+ assert g.del_node(n2) is g # multi-deletion okay
assert len(g.nodes) == nn - 1
assert len(n3.in_nodes) == 0
assert len(n1.out_nodes) == 0