From: Steven Hardy Date: Tue, 23 Oct 2012 13:20:37 +0000 (+0100) Subject: heat tests : StackBoto fix _check_*_result functions X-Git-Tag: 2014.1~1274 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=29b7ae7c1be059ef5b8b457329c453189417a175;p=openstack-build%2Fheat-build.git 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 --- diff --git a/heat/tests/functional/util.py b/heat/tests/functional/util.py index cb6390b9..160d4f60 100644 --- a/heat/tests/functional/util.py +++ b/heat/tests/functional/util.py @@ -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