Increase cooldown in test_asg_cooldown
Sometimes signal is received after 10 secs and the scaling
goes ahead. Would be good to set a bigger
cooldown time.
Change-Id: Ie1dd60c99842ff2c52a31d7c9439142b0c70afb5
Closes-Bug: #1696902
diff --git a/functional/test_heat_autoscaling.py b/functional/test_heat_autoscaling.py
index 608fd1d..474e1c3 100644
--- a/functional/test_heat_autoscaling.py
+++ b/functional/test_heat_autoscaling.py
@@ -146,7 +146,7 @@
def test_asg_cooldown(self):
cooldown_tmpl = self.template.replace('cooldown: 0',
- 'cooldown: 10')
+ 'cooldown: 60')
stack_id = self.stack_create(template=cooldown_tmpl,
expected_status='CREATE_COMPLETE')
stack = self.client.stacks.get(stack_id)