1
0
mirror of https://github.com/django/django.git synced 2025-04-16 21:34:37 +00:00

[1.7.x] Fixed flake8 warnings.

Backport of 392e11945fa246d751d23bb515703fcaf55dfa26 from master
This commit is contained in:
Tim Graham 2014-11-25 11:20:40 -05:00
parent ba3e976186
commit 943b1047de

View File

@ -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,