heat tests : StackBoto fix _check_*_result functions

The _check_*_result functions don't actually check anything
so make them check the response format, which should be a stackid

Change-Id: I6b22cdc64409846caadbd2ebca5e8a81eccc81a6
Signed-off-by: Steven Hardy <shardy@redhat.com>
This commit is contained in:
Steven Hardy 2012-10-23 14:20:37 +01:00
parent fd66a93cc7
commit 29b7ae7c1b
1 changed files with 2 additions and 2 deletions

View File

@ -547,10 +547,10 @@ class StackBoto(Stack):
the CFN API).
'''
def _check_create_result(self, result):
pass
self.check_stackid(result)
def _check_update_result(self, result):
pass
self.check_stackid(result)
def _create_heat_client(self):
# Connect to the keystone client with the supplied credentials