Fix race in new condition test
We're check the number of resources a bit early, let's wait a bit. Change-Id: I40160240cbc2c515c84569637c8a3af671082c60
This commit is contained in:
parent
1a7a113c71
commit
448a6a7121
@ -14,6 +14,7 @@
|
|||||||
import copy
|
import copy
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
from heat_integrationtests.common import test
|
||||||
from heat_integrationtests.functional import functional_base
|
from heat_integrationtests.functional import functional_base
|
||||||
|
|
||||||
test_template_one_resource = {
|
test_template_one_resource = {
|
||||||
@ -699,4 +700,11 @@ resources:
|
|||||||
template=updated_template,
|
template=updated_template,
|
||||||
expected_status='UPDATE_IN_PROGRESS')
|
expected_status='UPDATE_IN_PROGRESS')
|
||||||
|
|
||||||
self.assertIn('test3', self.list_resources(stack_identifier))
|
def check_resources():
|
||||||
|
resources = self.list_resources(stack_identifier)
|
||||||
|
if len(resources) < 2:
|
||||||
|
return False
|
||||||
|
self.assertIn('test3', resources)
|
||||||
|
return True
|
||||||
|
|
||||||
|
self.assertTrue(test.call_until_true(20, 2, check_resources))
|
||||||
|
Loading…
Reference in New Issue
Block a user