From b3aaf5cf30616ae5361ef8227364714428e27dd5 Mon Sep 17 00:00:00 2001 From: rabi Date: Thu, 26 Oct 2017 13:07:13 +0530 Subject: [PATCH] Cleanup ROLLBACK_COMPLETE stack after the test finishes Change-Id: Ia457aa7025c464a9dec78e95757d85c977307560 Closes-Bug: #1727632 --- heat_integrationtests/common/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat_integrationtests/common/test.py b/heat_integrationtests/common/test.py index a6aab7e614..f9feb30373 100644 --- a/heat_integrationtests/common/test.py +++ b/heat_integrationtests/common/test.py @@ -594,7 +594,7 @@ class HeatIntegrationTest(testscenarios.WithScenarios, environment_files=environment_files, timeout_mins=timeout_mins ) - if expected_status not in ['ROLLBACK_COMPLETE'] and enable_cleanup: + if enable_cleanup: self.addCleanup(self._stack_delete, name) stack = self.client.stacks.get(name, resolve_outputs=False)