X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_vm_type_resource_id.py;h=39a11ef3970112c2ca7edd31b86b0f113ab63bee;hp=9a4765629381e52e65102fa33defb1316adab4c6;hb=f5edc06be0d8bedeb0904b348ba5e3e67c74f186;hpb=1af0d577ab6d8c431ae1322657c50efd5e0a1a93 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