discovery: stop using global conf

Change-Id: I4495674a26ed77b1429d3284680f55175be29a1e
This commit is contained in:
Mehdi Abaakouk
2016-10-12 11:58:17 +02:00
parent fb7f4b1fcc
commit 79bd7e7173
16 changed files with 74 additions and 70 deletions

View File

@@ -226,17 +226,17 @@ class BaseAgentManagerTestCase(base.BaseTestCase):
'testdiscovery',
None,
None,
self.Discovery(), ),
self.Discovery(self.CONF), ),
extension.Extension(
'testdiscoveryanother',
None,
None,
self.DiscoveryAnother(), ),
self.DiscoveryAnother(self.CONF), ),
extension.Extension(
'testdiscoveryexception',
None,
None,
self.DiscoveryException(), ),
self.DiscoveryException(self.CONF), ),
],
)