mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #24366 -- Renamed arguments in MigrationGraph, renamed tests
This commit is contained in:
parent
c7ec3c07e7
commit
bc83add04c
2 changed files with 14 additions and 12 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue