From c181f2dd08ed7711cbac620b868ec3f1ec7584e0 Mon Sep 17 00:00:00 2001 From: Guillaume MARTINEZ Date: Thu, 3 Nov 2022 06:45:37 +0100 Subject: [PATCH] [Scaleway] Fix function namespace integration tests assertions (#5464) Signed-off-by: Lunik Signed-off-by: Lunik --- .../targets/scaleway_function_namespace/tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/integration/targets/scaleway_function_namespace/tasks/main.yml b/tests/integration/targets/scaleway_function_namespace/tasks/main.yml index e760a4c7fa..78b7c95757 100644 --- a/tests/integration/targets/scaleway_function_namespace/tasks/main.yml +++ b/tests/integration/targets/scaleway_function_namespace/tasks/main.yml @@ -145,7 +145,7 @@ name: '{{ name }}' region: '{{ scaleway_region }}' project_id: '{{ scw_project }}' - description: '{{ description }}' + description: '{{ updated_description }}' environment_variables: '{{ environment_variables }}' secret_environment_variables: '{{ updated_secret_environment_variables }}' register: fn_update_secret_check_task @@ -165,7 +165,7 @@ name: '{{ name }}' region: '{{ scaleway_region }}' project_id: '{{ scw_project }}' - description: '{{ description }}' + description: '{{ updated_description }}' environment_variables: '{{ environment_variables }}' secret_environment_variables: '{{ updated_secret_environment_variables }}' register: fn_update_secret_task @@ -179,7 +179,7 @@ - fn_update_secret_task is success - fn_update_secret_task is changed - fn_update_secret_task.function_namespace.status == "ready" - - "'hashed_value' in fn_creation_task.function_namespace.secret_environment_variables[0]" + - "'hashed_value' in fn_update_secret_task.function_namespace.secret_environment_variables[0]" - name: Update function namespace secret variables (Confirmation) community.general.scaleway_function_namespace: @@ -187,7 +187,7 @@ name: '{{ name }}' region: '{{ scaleway_region }}' project_id: '{{ scw_project }}' - description: '{{ description }}' + description: '{{ updated_description }}' environment_variables: '{{ environment_variables }}' secret_environment_variables: '{{ updated_secret_environment_variables }}' register: fn_update_secret_confirmation_task @@ -201,7 +201,7 @@ - fn_update_secret_confirmation_task is success - fn_update_secret_confirmation_task is not changed - fn_update_secret_confirmation_task.function_namespace.status == "ready" - - "'hashed_value' in fn_creation_task.function_namespace.secret_environment_variables[0]" + - "'hashed_value' in fn_update_secret_confirmation_task.function_namespace.secret_environment_variables[0]" - name: Delete function namespace (Check) check_mode: yes