summaryrefslogtreecommitdiff
path: root/tests/migrations/test_graph.py
diff options
context:
space:
mode:
authorMarten Kenbeek <marten.knbk@gmail.com>2015-02-23 14:29:28 +0100
committerMarkus Holtermann <info@markusholtermann.eu>2015-03-29 16:07:58 +0200
commitbc83add04c06e601d09a60df5492ff794baa2cbf (patch)
tree1bc541a9f77f52e2a7a378d48597c63865f91453 /tests/migrations/test_graph.py
parentc7ec3c07e78e288a48e87b979dbd12e1fa44fe66 (diff)
downloaddjango-bc83add04c06e601d09a60df5492ff794baa2cbf.tar.gz
Refs #24366 -- Renamed arguments in MigrationGraph, renamed tests
Diffstat (limited to 'tests/migrations/test_graph.py')
-rw-r--r--tests/migrations/test_graph.py4
1 files changed, 2 insertions, 2 deletions
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)