aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_reserve_port_fixed_ips_format.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/test_reserve_port_fixed_ips_format.py')
-rw-r--r--ice_validator/tests/test_reserve_port_fixed_ips_format.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/ice_validator/tests/test_reserve_port_fixed_ips_format.py b/ice_validator/tests/test_reserve_port_fixed_ips_format.py
index 42d9a61..5b28d06 100644
--- a/ice_validator/tests/test_reserve_port_fixed_ips_format.py
+++ b/ice_validator/tests/test_reserve_port_fixed_ips_format.py
@@ -51,15 +51,15 @@ def test_reserve_port_fixed_ips_format(heat_template):
follow the allowed naming conventions
'''
allowed_formats = [
- ["fixed_ips", "string", "internal",
- re.compile(r'(.+?)_int_(.+?)_floating_v6_ip')],
- ["fixed_ips", "string", "internal",
- re.compile(r'(.+?)_int_(.+?)_floating_ip')],
- ["fixed_ips", "string", "external",
- re.compile(r'(.+?)_floating_v6_ip')],
- ["fixed_ips", "string", "external",
- re.compile(r'(.+?)_floating_ip')],
- ]
+ ["fixed_ips", "string", "internal",
+ re.compile(r'(.+?)_int_(.+?)_floating_v6_ip')],
+ ["fixed_ips", "string", "internal",
+ re.compile(r'(.+?)_int_(.+?)_floating_ip')],
+ ["fixed_ips", "string", "external",
+ re.compile(r'(.+?)_floating_v6_ip')],
+ ["fixed_ips", "string", "external",
+ re.compile(r'(.+?)_floating_ip')],
+ ]
with open(heat_template) as fh:
yml = yaml.load(fh)