Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/208#discussion_r152273731
--- Diff: tests/orchestrator/execution/test_execution_compiler.py ---
@@ -78,24 +76,23 @@ def test_missing_workflow_implementation(service,
request):
service.workflows['test_workflow'] = workflow
with pytest.raises(exceptions.WorkflowImplementationNotFoundError):
- _create_workflow_runner(request, 'test_workflow')
+ _get_compiler(request, 'test_workflow').compile()
-def test_builtin_workflow_instantiation(request):
+def test_builtin_workflow_instantiation(request, model):
--- End diff --
Model is not used
---