X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=blobdiff_plain;f=ice_validator%2Ftests%2Ftest_fixed_ips_format_use_get_param.py;h=13f028dff45990c35a7794900874653ca1a78bfb;hp=afd52e5e97c1b17a8fb591ad67ac1d0e24fdcd15;hb=655f39713cca2595a812ccd60cc738301aef8b2f;hpb=671ada85afbb8112a7ae854950cea24756be4dd3 diff --git a/ice_validator/tests/test_fixed_ips_format_use_get_param.py b/ice_validator/tests/test_fixed_ips_format_use_get_param.py index afd52e5..13f028d 100644 --- a/ice_validator/tests/test_fixed_ips_format_use_get_param.py +++ b/ice_validator/tests/test_fixed_ips_format_use_get_param.py @@ -40,6 +40,7 @@ import pytest import yaml +from .utils.ports import is_reserved_port def test_fixed_ips_format_use_get_parm(heat_template): @@ -61,6 +62,8 @@ def test_fixed_ips_format_use_get_parm(heat_template): continue if v.get("type") != "OS::Neutron::Port": continue + if is_reserved_port(k): + continue valid_fixed_ip = True for k2, v2 in v["properties"].items():