diff options
| author | Tim Graham <timograham@gmail.com> | 2014-11-25 11:20:40 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-11-25 11:20:40 -0500 |
| commit | 392e11945fa246d751d23bb515703fcaf55dfa26 (patch) | |
| tree | 91dd88d4a8ca9810cab9c77f59fefca4abc44139 /tests/migrations/test_graph.py | |
| parent | ff3d746e8d8e8fbe6de287bd0f4c3a9fa23c18dc (diff) | |
Fixed flake8 warnings.
Diffstat (limited to 'tests/migrations/test_graph.py')
| -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 abb2b28dc1..c5ccdb79db 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, |
