Fix parameter type spelling tempest HOT template
HOT template file heat_minimal_hot.yaml uses uppercase spelling
for parameters, where HOT should use lowercase (e.g. string instead
of String).
While code has has been toloerant so far, the following change for
parameter schema validation refactoring make checking more strict
and causes tempest to fail:
https://review.openstack.org/67183
This patch fixes parameter type spelling in the tempest HOT
template.
Change-Id: I52a1b2272cd299cce3259805ee240a5782772aa4
Closes-Bug: #1270833
diff --git a/tempest/cli/simple_read_only/heat_templates/heat_minimal_hot.yaml b/tempest/cli/simple_read_only/heat_templates/heat_minimal_hot.yaml
index 6d89b7b..4657bfc 100644
--- a/tempest/cli/simple_read_only/heat_templates/heat_minimal_hot.yaml
+++ b/tempest/cli/simple_read_only/heat_templates/heat_minimal_hot.yaml
@@ -3,10 +3,10 @@
parameters:
instance_image:
description: Glance image name
- type: String
+ type: string
instance_type:
description: Nova instance type
- type: String
+ type: string
default: m1.small
constraints:
- allowed_values: [m1.small, m1.medium, m1.large]