summaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_unique_resources_across_all_templates.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/test_unique_resources_across_all_templates.py')
-rw-r--r--ice_validator/tests/test_unique_resources_across_all_templates.py7
1 files changed, 6 insertions, 1 deletions
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