diff options
author | Gonéri Le Bouder <goneri@lebouder.net> | 2019-06-28 19:29:29 +0200 |
---|---|---|
committer | Gonéri Le Bouder <goneri@lebouder.net> | 2019-07-09 11:55:12 +0200 |
commit | 140a8e53f3f7256b177d97b032ebc71e43bd5045 (patch) | |
tree | ea74ffa0b61ccced0e56f4e5097617d4ad6aaf1d /test | |
parent | dnf - fix error formatting of module name in error message (#58647) (diff) | |
download | ansible-140a8e53f3f7256b177d97b032ebc71e43bd5045.tar.xz ansible-140a8e53f3f7256b177d97b032ebc71e43bd5045.zip |
vmware_guest: do not use infra.vm_list
Update the functional tests of `vmware_guest` to use the
`virtual_machines` data structure.
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml b/test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml index ebf2850360..f5c31865f9 100644 --- a/test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml +++ b/test/integration/targets/vmware_guest/tasks/clone_d1_c1_f0.yml @@ -9,7 +9,7 @@ username: "{{ vcenter_username }}" password: "{{ vcenter_password }}" name: new_vm_1 - template: "{{ infra.vm_list[0] }}" + template: "{{ virtual_machines[0].name }}" guest_id: centos64Guest datacenter: "{{ dc1 }}" folder: D1/C1/F0 @@ -32,7 +32,7 @@ username: "{{ vcenter_username }}" password: "{{ vcenter_password }}" name: new_vm_2 - template: "{{ infra.vm_list[0] }}" + template: "{{ virtual_machines[0].name }}" guest_id: centos64Guest datacenter: "{{ dc1 }}" folder: D1/C1/F0 |