summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-11-25 11:20:40 -0500
committerTim Graham <timograham@gmail.com>2014-12-01 16:01:18 -0500
commit943b1047de0cf20dad26a81182a7e6dcd86fc626 (patch)
treeb5c542ede7e4be176ea9cf3d0dbdec0847f7299d /tests
parentba3e97618696bdd68e4ac9b2220f58e6b3d15bd4 (diff)
[1.7.x] Fixed flake8 warnings.
Backport of 392e11945fa246d751d23bb515703fcaf55dfa26 from master
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_graph.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/migrations/test_graph.py b/tests/migrations/test_graph.py
index 3e066ed1f3..a4e01d5b01 100644
--- a/tests/migrations/test_graph.py
+++ b/tests/migrations/test_graph.py
@@ -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,