Skip to content

Commit e757d3e

Browse files
committed
Fix tests
1 parent 9666ca5 commit e757d3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_node_iterators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_cycle_iterators(sample_graph):
5656
def test_tasks_iterator_validation_error(graph, cycles, error):
5757
with pytest.raises(error):
5858
# noinspection PyTypeChecker
59-
TasksIterator(graph, cycles)
59+
TasksIterator(graph=graph, cycles_removed=[], cycles=cycles)
6060

6161
def test_tasks_iterator(sample_graph):
6262
graph, cycles_removed = decyclify(sample_graph, 'a')

0 commit comments

Comments
 (0)