Commit 3ab36d00 authored by Andrew Godwin's avatar Andrew Godwin
Browse files

Fix Python 3 incompatability

parent 2145a778
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ class GraphTests(TestCase):
        root = ("app_a", "1")
        graph.add_node(root, None)
        expected = [root]
        for i in xrange(2, 1000):
        for i in range(2, 1000):
            parent = ("app_a", str(i - 1))
            child = ("app_a", str(i))
            graph.add_node(child, None)