summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Giusti <kgiusti@gmail.com>2015-02-05 17:09:54 -0500
committerKenneth Giusti <kgiusti@gmail.com>2015-02-05 17:09:54 -0500
commita9d5dd1b73ff343d70c5a1d002ba33575edd8906 (patch)
tree68509e7d8deb15d6a827b96341095dd149c06873
parent3d366c94895eb05461c84b6df9cd215df77ecd09 (diff)
downloadoslo-messaging-a9d5dd1b73ff343d70c5a1d002ba33575edd8906.tar.gz
Include missing parameter in call to listen_for_notifications
Change-Id: I07ec6ef0c637e5f2376f49ef0413d2bbd050563a Closes-bug: #1409045
-rw-r--r--oslo_messaging/tests/test_amqp_driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_messaging/tests/test_amqp_driver.py b/oslo_messaging/tests/test_amqp_driver.py
index a1f5ea5..7325ed5 100644
--- a/oslo_messaging/tests/test_amqp_driver.py
+++ b/oslo_messaging/tests/test_amqp_driver.py
@@ -260,7 +260,7 @@ class TestAmqpNotification(_AmqpBrokerTestCase):
notifications = [(oslo_messaging.Target(topic="topic-1"), 'info'),
(oslo_messaging.Target(topic="topic-1"), 'error'),
(oslo_messaging.Target(topic="topic-2"), 'debug')]
- nl = driver.listen_for_notifications(notifications)
+ nl = driver.listen_for_notifications(notifications, None)
listener = _ListenerThread(nl, 3)
targets = ['topic-1.info',