From ac85e7a1ec04c9835f3dc678337385e5e6c03d1c Mon Sep 17 00:00:00 2001 From: George Ghawali Date: Thu, 12 Dec 2024 10:50:12 +0200 Subject: [PATCH] minor change in test case name and messages --- .../targets/ntnx_static_routes_info/tasks/info.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/targets/ntnx_static_routes_info/tasks/info.yml b/tests/integration/targets/ntnx_static_routes_info/tasks/info.yml index d1a51223..14ebd81c 100644 --- a/tests/integration/targets/ntnx_static_routes_info/tasks/info.yml +++ b/tests/integration/targets/ntnx_static_routes_info/tasks/info.yml @@ -20,14 +20,14 @@ uuid: "{{ external_nat_subnet.uuid }}" register: result -- name: Update static routes list Status +- name: Create new static routes status ansible.builtin.assert: that: - result.response is defined - result.response.status.state == 'COMPLETE' - result.changed == true - fail_msg: "Fail: Unable to update static routes of vpc" - success_msg: "Succes: static routes updated successfully" + fail_msg: "Fail: Unable to create static routes for vpc" + success_msg: "Success: Static routes created" ###########################################################################################################