From 29b7ae7c1be059ef5b8b457329c453189417a175 Mon Sep 17 00:00:00 2001 From: Steven Hardy Date: Tue, 23 Oct 2012 14:20:37 +0100 Subject: [PATCH] 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 --- heat/tests/functional/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.45.2