Add missing explicit cfg option import

The test ceilometer.tests.event.test_endpoint.TestEventEndpoint cannot
be run standalone because of missing import.

This change fixes that.

Change-Id: I18083a0793204da5ef9b78573fa4a0483964e158
This commit is contained in:
Mehdi Abaakouk
2014-06-09 08:54:56 +02:00
parent 3b720b6809
commit bf614837f9

View File

@@ -19,6 +19,7 @@
import mock
from oslo.config import cfg
import oslo.messaging
from stevedore import extension
@@ -80,6 +81,10 @@ TEST_NOTICE_PAYLOAD = {
}
cfg.CONF.import_opt('store_events', 'ceilometer.notification',
group='notification')
class TestEventEndpoint(tests_base.BaseTestCase):
def setUp(self):