aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_fixed_ips_format_use_get_param.py
diff options
context:
space:
mode:
authorstark, steven <ss820f@att.com>2018-04-23 08:49:34 -0700
committerstark, steven <ss820f@att.com>2018-04-23 08:49:34 -0700
commit655f39713cca2595a812ccd60cc738301aef8b2f (patch)
treeb643a746b17ed00575b980c2bb233ce7cbf2109b /ice_validator/tests/test_fixed_ips_format_use_get_param.py
parent671ada85afbb8112a7ae854950cea24756be4dd3 (diff)
[VVP] add bug fixes and reserve port updates
Adding test script updates and reserve port Change-Id: I2af5263a48a53117021f166d08395685e89fd122 Issue-ID: VVP-56 Signed-off-by: stark, steven <ss820f@att.com>
Diffstat (limited to 'ice_validator/tests/test_fixed_ips_format_use_get_param.py')
-rw-r--r--ice_validator/tests/test_fixed_ips_format_use_get_param.py3
1 files changed, 3 insertions, 0 deletions
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():