aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_heat_template_structure.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/test_heat_template_structure.py')
-rw-r--r--ice_validator/tests/test_heat_template_structure.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ice_validator/tests/test_heat_template_structure.py b/ice_validator/tests/test_heat_template_structure.py
index 3b69faf..1b85dac 100644
--- a/ice_validator/tests/test_heat_template_structure.py
+++ b/ice_validator/tests/test_heat_template_structure.py
@@ -68,14 +68,14 @@ def test_heat_template_structure_contains_description(yaml_file):
@validates("R-35414")
-def test_heat_template_structure_contains_parameters(heat_template):
+def test_heat_template_structure_contains_parameters(yaml_file):
"""
Check that all heat templates have the required sections
"""
- if is_base_module(heat_template):
+ if is_base_module(yaml_file):
pytest.skip("Not applicable to base modules")
- template = load_yaml(heat_template)
- assert "parameters" in template, "This template must contain a parameters section"
+ template = load_yaml(yaml_file)
+ assert "parameters" in template and len(template["parameters"].keys()), "This template must contain a parameters section"
@validates("R-23664")