summaryrefslogtreecommitdiff
path: root/nova/tests/unit/test_notifications.py
diff options
context:
space:
mode:
authorMichael Still <mikal@stillhq.com>2016-02-15 16:40:53 +1100
committerMichael Still <mikal@stillhq.com>2016-02-15 16:40:53 +1100
commit50a9550999ccf746141bed0d2d6bf4c0801dba72 (patch)
tree46b74f3702ce6159fc2615fcfe7a81e536013e62 /nova/tests/unit/test_notifications.py
parentdd03245bf12a512ecb7d8f5b479950288ef3beac (diff)
downloadnova-50a9550999ccf746141bed0d2d6bf4c0801dba72.tar.gz
Remove unused CONF imports
While reviewing config centralization patches I realized that we have a fair few files where we import cfg or setup CONF, but never actually use config variables. This patch cleans those up, but I am sure we'll add more as we move more flags around. Change-Id: I5851bbae2fa198a4e9be149a5836bea813848d89
Diffstat (limited to 'nova/tests/unit/test_notifications.py')
-rw-r--r--nova/tests/unit/test_notifications.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/tests/unit/test_notifications.py b/nova/tests/unit/test_notifications.py
index 187a85bf7a..83f2d3cbb4 100644
--- a/nova/tests/unit/test_notifications.py
+++ b/nova/tests/unit/test_notifications.py
@@ -24,7 +24,6 @@ from oslo_context import fixture as o_fixture
from nova.compute import flavors
from nova.compute import task_states
from nova.compute import vm_states
-import nova.conf
from nova import context
from nova import exception
from nova import notifications
@@ -34,8 +33,6 @@ from nova import test
from nova.tests.unit import fake_network
from nova.tests.unit import fake_notifier
-CONF = nova.conf.CONF
-
class NotificationsTestCase(test.TestCase):