aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteven stark <steven.stark@att.com>2019-11-12 21:52:48 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-12 21:52:48 +0000
commitdd0d480978570b4222206bc04edd271c39b88b44 (patch)
treea246dc4bf4983e7ab2ef143a1be3e5ed151d7584
parentce4c2c329b7b9afbb70f22644748688aa8e5fb0e (diff)
parentf727d71fdc058282bce28d07eee18dc53700a9ee (diff)
Merge "[VVP] Fix issue floating IP params for R-35666"
-rw-r--r--ice_validator/tests/test_internal_networks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ice_validator/tests/test_internal_networks.py b/ice_validator/tests/test_internal_networks.py
index 92cad9c..b06467a 100644
--- a/ice_validator/tests/test_internal_networks.py
+++ b/ice_validator/tests/test_internal_networks.py
@@ -44,11 +44,11 @@ from tests.test_network_format import NETWORK_RESOURCE_TYPES, RE_INTERNAL_NETWOR
INTERNAL_NETWORK_PARAMETERS = [
re.compile(r"int_(.+?)_net_id"),
re.compile(r"int_(.+?)_net_name"),
+ re.compile(r".*_int_(.+?)_floating(?:_v6)?_ip"),
+ re.compile(r".*_int_(.+?)_floating(?:_v6)?_ips"),
re.compile(r".*?_int_(.+?)(?:_v6)?_ips"),
re.compile(r".*?_int_(.+?)(?:_v6)?_ip_\d+"),
re.compile(r"int_(.+?)(?:_v6)?_subnet_id"),
- re.compile(r".*_int_(.+?)_floating(?:_v6)?_ip"),
- re.compile(r".*_int_(.+?)_floating(?:_v6)?_ips"),
re.compile(r"(?:.*_)?int_(.+?)_security_group"),
]