Fixed flake8 warnings.

This commit is contained in:
Tim Graham 2014-11-25 11:20:40 -05:00
parent ff3d746e8d
commit 392e11945f
1 changed files with 3 additions and 3 deletions

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,