From bc83add04c06e601d09a60df5492ff794baa2cbf Mon Sep 17 00:00:00 2001 From: Marten Kenbeek Date: Mon, 23 Feb 2015 14:29:28 +0100 Subject: Refs #24366 -- Renamed arguments in MigrationGraph, renamed tests --- tests/migrations/test_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/migrations/test_graph.py b/tests/migrations/test_graph.py index 50a8314c8b..ffb67dacef 100644 --- a/tests/migrations/test_graph.py +++ b/tests/migrations/test_graph.py @@ -153,7 +153,7 @@ class GraphTests(TestCase): graph.forwards_plan, ('C', '0001') ) - def test_deep_graph(self): + def test_graph_recursive(self): graph = MigrationGraph() root = ("app_a", "1") graph.add_node(root, None) @@ -169,7 +169,7 @@ class GraphTests(TestCase): self.assertEqual(expected[::-1], actual) @expectedFailure - def test_recursion_depth(self): + def test_graph_iterative(self): graph = MigrationGraph() root = ("app_a", "1") graph.add_node(root, None) -- cgit v1.3