summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_notifier.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/tests/unit/test_notifier.py b/tests/unit/test_notifier.py
index 1cabae0..c01bf3d 100644
--- a/tests/unit/test_notifier.py
+++ b/tests/unit/test_notifier.py
@@ -111,17 +111,18 @@ class NotifierTestCase(test_utils.BaseTestCase):
self.assertEqual(self.test_topic, 'testnotify.debug')
def test_error_notification(self):
- self.stubs.Set(cfg.CONF, 'notification_driver',
- ['openstack.common.notifier.rabbit_notifier'])
- self.stubs.Set(cfg.CONF, 'publish_errors', True)
- LOG = log.getLogger('common')
- log.setup(None)
+ self.config(publish_errors=True,
+ use_stderr=False)
+
+ def mock_notify(context, message):
+ msgs.append(message)
+
msgs = []
+ self.stubs.Set(no_op_notifier, 'notify', mock_notify)
- def mock_notify(context, topic, data):
- msgs.append(data)
+ LOG = log.getLogger('test_error_notification.common')
+ log.setup('test_error_notification')
- self.stubs.Set(rpc, 'notify', mock_notify)
LOG.error('foo')
self.assertEqual(1, len(msgs))
msg = msgs[0]