aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_vm_type_resource_id.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/test_vm_type_resource_id.py')
-rw-r--r--ice_validator/tests/test_vm_type_resource_id.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ice_validator/tests/test_vm_type_resource_id.py b/ice_validator/tests/test_vm_type_resource_id.py
index 9a47656..39a11ef 100644
--- a/ice_validator/tests/test_vm_type_resource_id.py
+++ b/ice_validator/tests/test_vm_type_resource_id.py
@@ -68,7 +68,6 @@ def test_vm_type_resource_id(heat_template):
for rid in h.resources:
lower_rid = rid.lower()
for vm_type, lower_vm_type in vm_types.items():
- if (lower_rid.startswith(lower_vm_type)
- and not rid.startswith(vm_type)):
- bad[rid] = vm_type
+ if lower_rid.startswith(lower_vm_type) and not rid.startswith(vm_type):
+ bad[rid] = vm_type
assert not bad, 'resource_id which do not match their vm-type %s' % bad