Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/208#discussion_r152233908
--- Diff: tests/orchestrator/execution_plugin/test_local.py ---
@@ -500,8 +500,9 @@ def mock_workflow(ctx, graph):
arguments=arguments))
return graph
tasks_graph = mock_workflow(ctx=workflow_context) # pylint:
disable=no-value-for-parameter
- graph_compiler.GraphCompiler(workflow_context,
executor.__class__).compile(tasks_graph)
- eng = engine.Engine({executor.__class__: executor})
+ graph_compiler.GraphCompiler(workflow_context,
executor.__class__).compile(
--- End diff --
no need for newline
---