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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/async/test_graph.py b/test/git/async/test_graph.py
index 400e92cd..ca17d6e6 100644
--- a/test/git/async/test_graph.py
+++ b/test/git/async/test_graph.py
@@ -25,7 +25,7 @@ class TestGraph(TestBase):
# add a chain of connected nodes
last = None
for i in range(nn):
- n = g.add_node(Node())
+ n = g.add_node(Node(i))
if last:
assert not last.out_nodes
assert not n.in_nodes