From b2aa78b5588bf4bfb66951b868a3b641d2dd64e1 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Tue, 29 May 2012 08:59:47 +0100 Subject: Use cfg's new global CONF object Implements blueprint cfg-global-object Change-Id: Ic53b41dafa8666ce21f33697f7e8697f1e5cb0fd --- tests/test_import_legacy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_import_legacy.py') diff --git a/tests/test_import_legacy.py b/tests/test_import_legacy.py index 5b1412b1..5c6ee61d 100644 --- a/tests/test_import_legacy.py +++ b/tests/test_import_legacy.py @@ -33,9 +33,9 @@ CONF = config.CONF class ImportLegacy(test.TestCase): def setUp(self): super(ImportLegacy, self).setUp() - CONF(config_files=[test.etcdir('keystone.conf.sample'), - test.testsdir('test_overrides.conf'), - test.testsdir('backend_sql.conf')]) + self.config([test.etcdir('keystone.conf.sample'), + test.testsdir('test_overrides.conf'), + test.testsdir('backend_sql.conf')]) sql_util.setup_test_database() self.identity_api = identity_sql.Identity() -- cgit