Fixes failing test case

This commit is contained in:
Ask Solem 2016-12-07 15:58:56 -08:00
parent c95163cab2
commit 5a028a6906
1 changed files with 2 additions and 2 deletions

View File

@ -506,9 +506,9 @@ class test_Channel:
c = self.channel
c.exchange_declare(exchange='unique_name')
c.queue_declare(queue='q')
c.queue_bind(queue='q', exchange='foo', routing_key='rk')
c.queue_bind(queue='q', exchange='unique_name', routing_key='rk')
assert ('q', 'foo', 'rk') in list(c.list_bindings())
assert ('q', 'unique_name', 'rk') in list(c.list_bindings())
def test_after_reply_message_received(self):
c = self.channel