X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_forbidden_resources.py;h=d24eb507f071a6e99ada6ea2156df51255ffd852;hb=00c64458942602efe5a3b712540b98ac94fb60f4;hp=205dfcda34b5cdda3630de249cc62f1a35136f7e;hpb=ab01f96b1405bc037853847138a121581bb98f05;p=vvp%2Fvalidation-scripts.git diff --git a/ice_validator/tests/test_forbidden_resources.py b/ice_validator/tests/test_forbidden_resources.py index 205dfcd..d24eb50 100644 --- a/ice_validator/tests/test_forbidden_resources.py +++ b/ice_validator/tests/test_forbidden_resources.py @@ -63,18 +63,18 @@ def run_test(heat_template, forbidden): @validates("R-05257") -def test_neutron_floating_ip_resource_type(heat_template): +def test_neutron_floating_ip_resource_type(yaml_file): """ A VNF's Heat Orchestration Template's **MUST NOT** contain the Resource ``OS::Neutron::FloatingIP``. """ - run_test(heat_template, "OS::Neutron::FloatingIP") + run_test(yaml_file, "OS::Neutron::FloatingIP") @validates("R-76449") -def test_neutron_floating_ip_association_resource_type(heat_template): +def test_neutron_floating_ip_association_resource_type(yaml_file): """ A VNF's Heat Orchestration Template's **MUST NOT** contain the Resource ``OS::Neutron::FloatingIPAssociation``. """ - run_test(heat_template, "OS::Neutron::FloatingIPAssociation") + run_test(yaml_file, "OS::Neutron::FloatingIPAssociation")