Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes 78e5e2f57 -> d09a832f2
fixed name in test Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/d09a832f Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/d09a832f Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/d09a832f Branch: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes Commit: d09a832f2210f54cbd6fae7baa143183f376a412 Parents: 78e5e2f Author: max-orlov <[email protected]> Authored: Thu May 25 15:00:11 2017 +0300 Committer: max-orlov <[email protected]> Committed: Thu May 25 15:00:11 2017 +0300 ---------------------------------------------------------------------- tests/orchestrator/workflows/core/test_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/d09a832f/tests/orchestrator/workflows/core/test_task.py ---------------------------------------------------------------------- diff --git a/tests/orchestrator/workflows/core/test_task.py b/tests/orchestrator/workflows/core/test_task.py index b1b8251..e488933 100644 --- a/tests/orchestrator/workflows/core/test_task.py +++ b/tests/orchestrator/workflows/core/test_task.py @@ -100,7 +100,7 @@ class TestOperationTask(object): storage_task = ctx.model.task.get_by_name(core_task.name) assert storage_task.plugin is storage_plugin assert storage_task.execution_name == ctx.execution.name - assert storage_task.actor == core_task.context.node._actor + assert storage_task.actor == core_task.context.node._original_model assert core_task.model_task == storage_task assert core_task.name == api_task.name assert core_task.implementation == api_task.implementation
