Increased timeout for Heat OSTF test

It looks like Heat OSTF test has small timeouts for
operations with stack and we need to increase timeouts
to avid false-negative results.

Change-Id: Ia24fda69682c7e079414f725fe78b5484a191d35
Closes-Bug: #1567727
This commit is contained in:
Timur Nurlygayanov 2016-04-25 17:05:52 +03:00 committed by tatyana-leontovich
parent e0a7c67c8d
commit 2ccc0e9edd
1 changed files with 3 additions and 3 deletions

View File

@ -400,7 +400,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest):
14. Delete the stack.
15. Wait for the stack to be deleted.
Duration: 1140 s.
Duration: 1300 s.
"""
self.check_image_exists()
@ -494,7 +494,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest):
template, parameters=parameters
)
self.verify(
100, self.wait_for_stack_status,
150, self.wait_for_stack_status,
9, fail_msg,
'stack status becoming "UPDATE_COMPLETE"',
stack.id, 'UPDATE_COMPLETE'
@ -535,7 +535,7 @@ class HeatSmokeTests(heatmanager.HeatBaseTest):
template, parameters=parameters
)
self.verify(
180, self.wait_for_stack_status,
300, self.wait_for_stack_status,
12, fail_msg,
'stack status becoming "UPDATE_COMPLETE"',
stack.id, 'UPDATE_COMPLETE'