From 909f7f2ce5ec8ec2632ef66303767ac5685a9d84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Thu, 11 Jul 2019 04:36:28 +0200 Subject: [PATCH] vmware_dvswitch_nioc: fix the integration test (#58920) Correct the name of the vcenter variables. --- .../targets/vmware_dvswitch_nioc/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/integration/targets/vmware_dvswitch_nioc/tasks/main.yml b/test/integration/targets/vmware_dvswitch_nioc/tasks/main.yml index c48b84897d3..1aa4da06cda 100644 --- a/test/integration/targets/vmware_dvswitch_nioc/tasks/main.yml +++ b/test/integration/targets/vmware_dvswitch_nioc/tasks/main.yml @@ -35,9 +35,9 @@ - &enable_nioc name: Enable NIOC vmware_dvswitch_nioc: - hostname: "{{ vcenter_server }}" - username: "{{ vcenter_user }}" - password: "{{ vcenter_pass }}" + hostname: "{{ vcenter_hostname }}" + username: "{{ vcenter_username }}" + password: "{{ vcenter_password }}" switch: dvswitch_0001 version: version3 validate_certs: no @@ -74,9 +74,9 @@ - &disable_nioc name: Disable NIOC vmware_dvswitch_nioc: - hostname: "{{ vcenter_server }}" - username: "{{ vcenter_user }}" - password: "{{ vcenter_pass }}" + hostname: "{{ vcenter_hostname }}" + username: "{{ vcenter_username }}" + password: "{{ vcenter_password }}" switch: dvswitch_0001 validate_certs: no state: absent