diff options
author | Michael Still <mikal@stillhq.com> | 2016-02-15 16:40:53 +1100 |
---|---|---|
committer | Michael Still <mikal@stillhq.com> | 2016-02-15 16:40:53 +1100 |
commit | 50a9550999ccf746141bed0d2d6bf4c0801dba72 (patch) | |
tree | 46b74f3702ce6159fc2615fcfe7a81e536013e62 /nova/tests/unit/test_notifications.py | |
parent | dd03245bf12a512ecb7d8f5b479950288ef3beac (diff) | |
download | nova-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.py | 3 |
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): |