From 39f201806a70a3ab1b5f9d622e5bad077908ca1a Mon Sep 17 00:00:00 2001 From: Thomas Herve Date: Thu, 17 Oct 2013 12:01:45 +0200 Subject: [PATCH] Remove spurious traceback in test One of the engine_service test displays a traceback for no good reason in the tests. Cleaning up the stack created in the tests removes it. Change-Id: I683e3318f5970c836118e99301079faff894e25d --- heat/tests/test_engine_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/heat/tests/test_engine_service.py b/heat/tests/test_engine_service.py index 1ce0f8824a..f53332161b 100644 --- a/heat/tests/test_engine_service.py +++ b/heat/tests/test_engine_service.py @@ -468,6 +468,7 @@ class StackServiceCreateUpdateDeleteTest(HeatTestCase): self.m.VerifyAll() self.assertEquals(stack.identifier(), result) self.assertEquals(3, stack.total_resources()) + stack.delete() def test_stack_create_total_resources_exceeds_max(self): stack_name = 'service_create_stack_total_resources_exceeds_max'