From 03f2cb5037a43ed8c7b437bf90c49920574e5bf2 Mon Sep 17 00:00:00 2001 From: Dina Belova Date: Thu, 28 Nov 2013 19:52:29 +0400 Subject: [PATCH] Remove config parsing call from test setup Change-Id: Ib30e45d87fc85052114e5727a200e2102c4face6 Fixes: bug #1256027 --- climate/tests/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/climate/tests/__init__.py b/climate/tests/__init__.py index 1dad9aaa..caa1eac8 100644 --- a/climate/tests/__init__.py +++ b/climate/tests/__init__.py @@ -64,7 +64,6 @@ class TestCase(test.BaseTestCase): """Run before each test method to initialize test environment.""" super(TestCase, self).setUp() self.useFixture(config.Config()) - cfg.CONF([], project='climate') self.context_mock = None def patch(self, obj, attr):