aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLovett, Trevor <trevor.lovett@att.com>2019-11-12 15:06:05 -0600
committerLovett, Trevor (tl2972) <tl2972@att.com>2019-11-12 15:43:38 -0600
commitf727d71fdc058282bce28d07eee18dc53700a9ee (patch)
treee7e41ce2b700853670af2040bf9b7b6e8e0bd8d5
parent74436fb509d03ea56feb50afa083c9c393fd95c5 (diff)
[VVP] Fix issue floating IP params for R-35666
Change-Id: I5071958a0709ad2d9606eea8ab90247b6a3283b8 Issue-ID: VVP-340 Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
-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"),
]