From f727d71fdc058282bce28d07eee18dc53700a9ee Mon Sep 17 00:00:00 2001 From: "Lovett, Trevor" Date: Tue, 12 Nov 2019 15:06:05 -0600 Subject: [PATCH] [VVP] Fix issue floating IP params for R-35666 Change-Id: I5071958a0709ad2d9606eea8ab90247b6a3283b8 Issue-ID: VVP-340 Signed-off-by: Lovett, Trevor --- ice_validator/tests/test_internal_networks.py | 4 ++-- 1 file 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"), ] -- 2.16.6