Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/208#discussion_r152273539
--- Diff: tests/orchestrator/execution/test_execution_compiler.py ---
@@ -66,7 +64,7 @@ class FailingTask(BaseException):
def test_undeclared_workflow(request):
# validating a proper error is raised when the workflow is not
declared in the service
with pytest.raises(exceptions.UndeclaredWorkflowError):
- _create_workflow_runner(request, 'undeclared_workflow')
+ _get_compiler(request, 'undeclared_workflow').compile()
--- End diff --
compile -> prepare
---