X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=ice_validator%2Ftests%2Ftest_unique_resources_across_template.py;h=b811cdb01af213c90d012c609bb3f007492c15ef;hb=60d5ad7d00eadd6395eca186e6fa76a43df3c6cf;hp=6bfc43ca3ca4f4e95189a3b5e2b78968a5842a22;hpb=31d5da59b39d38760cc519a2c5e5b70357b539e8;p=vvp%2Fvalidation-scripts.git diff --git a/ice_validator/tests/test_unique_resources_across_template.py b/ice_validator/tests/test_unique_resources_across_template.py index 6bfc43c..b811cdb 100644 --- a/ice_validator/tests/test_unique_resources_across_template.py +++ b/ice_validator/tests/test_unique_resources_across_template.py @@ -55,10 +55,10 @@ def test_unique_resources_across_yaml_file(yaml_file): try: with open(yaml_file) as fh: - yml = yaml.load(fh) + yaml.load(fh) # Assert yaml file dont have resources - assert len(yml["resources"]) != 0 + # assert len(yml["resources"]) != 0 except ConstructorError as ce: print(ce)