From 1b27292936c81637f6b9a7141dafaad1126f268e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 6 Jun 2010 21:15:13 +0200 Subject: Plenty of fixes in the chunking routine, made possible by a serialized chunking test. Next up, actual async processing --- test/git/async/test_graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/git/async/test_graph.py') 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 -- cgit v1.2.1