mirror of
https://github.com/django/django.git
synced 2025-11-02 12:58:56 +00:00
Fixed flake8 warnings.
This commit is contained in:
parent
ff3d746e8d
commit
392e11945f
1 changed files with 3 additions and 3 deletions
|
|
@ -139,9 +139,9 @@ class GraphTests(TestCase):
|
|||
graph.add_node(('A', '0001'), None)
|
||||
graph.add_node(('C', '0001'), None)
|
||||
graph.add_node(('B', '0001'), None)
|
||||
graph.add_dependency('A.0001', ('A', '0001'),('B', '0001'))
|
||||
graph.add_dependency('B.0001', ('B', '0001'),('A', '0001'))
|
||||
graph.add_dependency('C.0001', ('C', '0001'),('B', '0001'))
|
||||
graph.add_dependency('A.0001', ('A', '0001'), ('B', '0001'))
|
||||
graph.add_dependency('B.0001', ('B', '0001'), ('A', '0001'))
|
||||
graph.add_dependency('C.0001', ('C', '0001'), ('B', '0001'))
|
||||
|
||||
self.assertRaises(
|
||||
CircularDependencyError,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue