From 59b71808395e77ed6a40c4c8da5fb050bf2f301f Mon Sep 17 00:00:00 2001 From: Sergey Kraynev Date: Fri, 3 Oct 2014 04:42:17 -0400 Subject: [PATCH] Enable breaking test for adopt operation After turning off by default adopt and abandon one of the test show traceback during unittests. This patch fix this problem, by overriding config option for this test. Change-Id: I8e0f8662753681079e4dd22c0726042ad47eabf0 --- 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 8c5683474..597f6c2b9 100644 --- a/heat/tests/test_engine_service.py +++ b/heat/tests/test_engine_service.py @@ -547,6 +547,7 @@ class StackServiceCreateUpdateDeleteTest(HeatTestCase): self.m.VerifyAll() def test_stack_adopt_with_params(self): + cfg.CONF.set_override('enable_stack_adopt', True) template = { "heat_template_version": "2013-05-23", "parameters": {"app_dbx": {"type": "string"}},