diff options
| author | Tim Graham <timograham@gmail.com> | 2014-11-25 11:20:40 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-01 16:01:18 -0500 |
| commit | 943b1047de0cf20dad26a81182a7e6dcd86fc626 (patch) | |
| tree | b5c542ede7e4be176ea9cf3d0dbdec0847f7299d /tests | |
| parent | ba3e97618696bdd68e4ac9b2220f58e6b3d15bd4 (diff) | |
[1.7.x] Fixed flake8 warnings.
Backport of 392e11945fa246d751d23bb515703fcaf55dfa26 from master
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/migrations/test_graph.py | 6 |
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, |
