From: Lovett, Trevor Date: Tue, 12 Nov 2019 21:06:05 +0000 (-0600) Subject: [VVP] Fix issue floating IP params for R-35666 X-Git-Tag: 6.0.0~20^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=commitdiff_plain;h=f727d71fdc058282bce28d07eee18dc53700a9ee [VVP] Fix issue floating IP params for R-35666 Change-Id: I5071958a0709ad2d9606eea8ab90247b6a3283b8 Issue-ID: VVP-340 Signed-off-by: Lovett, Trevor --- 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"), ]