X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_unique_resources_across_all_templates.py;h=7682782652c96f15bee9c9043e802c29fa651303;hp=13b4121b94682737b26f8e749287a11c049bd65f;hb=655f39713cca2595a812ccd60cc738301aef8b2f;hpb=671ada85afbb8112a7ae854950cea24756be4dd3 diff --git a/ice_validator/tests/test_unique_resources_across_all_templates.py b/ice_validator/tests/test_unique_resources_across_all_templates.py index 13b4121..7682782 100644 --- a/ice_validator/tests/test_unique_resources_across_all_templates.py +++ b/ice_validator/tests/test_unique_resources_across_all_templates.py @@ -39,6 +39,7 @@ # import yaml +import collections def test_unique_resources_across_all_yaml_files(yaml_files): @@ -54,4 +55,8 @@ def test_unique_resources_across_all_yaml_files(yaml_files): continue resources_ids.extend(yml['resources'].keys()) - assert len(resources_ids) == len(set(resources_ids)) + dup_ids = [item + for item, count in collections.Counter(resources_ids).items() + if count > 1] + + assert not dup_ids