Renamed image->image_name and flavor->flavor_name to avoid collisions

Change-Id: I09a133b5c4f6c71e10d274be1c70b7edcce1c83c
This commit is contained in:
Jakob Meng
2022-11-03 14:37:00 +01:00
parent b3c2e8f1ce
commit a8f6dbd904
11 changed files with 77 additions and 76 deletions

View File

@@ -245,10 +245,10 @@
openstack.cloud.compute_flavor_info:
cloud: "{{ cloud }}"
name: "m1.tiny"
register: flavor_name
register: flavor
- name: Check output of list flavors with filter
assert:
that:
- flavor_name.openstack_flavors | length == 1
- flavor.openstack_flavors | length == 1
- flavor.openstack_flavors.0.name == "m1.tiny"