summaryrefslogtreecommitdiff
path: root/nova/tests/unit/test_service_auth.py
diff options
context:
space:
mode:
authorMatthew Edmonds <edmondsw@us.ibm.com>2018-01-22 09:46:53 -0500
committerMatthew Edmonds <edmondsw@us.ibm.com>2018-03-09 14:30:10 -0500
commitdc32774ecc9335860677bc2562451093d8e952a1 (patch)
tree4362e0069b1e65dadab89842bd06683d20a1f8dc /nova/tests/unit/test_service_auth.py
parentfcda5c2d1a8653242e580cc2c00d130a5d4f4e2e (diff)
downloadnova-dc32774ecc9335860677bc2562451093d8e952a1.tar.gz
remove unnecessary conf imports
There are a bunch of files that define CONF but don't ever reference it. This cleans that up, removing unnecessary imports. In order to get flake8 to pass I also had to remove some (unrelated) unused imports from touched files. Change-Id: Ib96ebeeb5e4bfedb20afb02c56da1521df9fac4f
Diffstat (limited to 'nova/tests/unit/test_service_auth.py')
-rw-r--r--nova/tests/unit/test_service_auth.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/tests/unit/test_service_auth.py b/nova/tests/unit/test_service_auth.py
index 863143ad0e..db2a2e2899 100644
--- a/nova/tests/unit/test_service_auth.py
+++ b/nova/tests/unit/test_service_auth.py
@@ -14,15 +14,11 @@ from keystoneauth1 import loading as ks_loading
from keystoneauth1 import service_token
import mock
-import nova.conf
from nova import context
from nova import service_auth
from nova import test
-CONF = nova.conf.CONF
-
-
class ServiceAuthTestCase(test.NoDBTestCase):
def setUp(self):