[VVP] add bug fixes and reserve port updates
[vvp/validation-scripts.git] / ice_validator / tests / test_fixed_ips_format_use_get_param.py
index afd52e5..13f028d 100644 (file)
@@ -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():