diff options
author | steven stark <steven.stark@att.com> | 2019-11-12 21:52:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-12 21:52:48 +0000 |
commit | dd0d480978570b4222206bc04edd271c39b88b44 (patch) | |
tree | a246dc4bf4983e7ab2ef143a1be3e5ed151d7584 /ice_validator | |
parent | ce4c2c329b7b9afbb70f22644748688aa8e5fb0e (diff) | |
parent | f727d71fdc058282bce28d07eee18dc53700a9ee (diff) |
Merge "[VVP] Fix issue floating IP params for R-35666"
Diffstat (limited to 'ice_validator')
-rw-r--r-- | ice_validator/tests/test_internal_networks.py | 4 |
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"), ] |