Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
Fixes failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Dec 7, 2016
1 parent c95163c commit 5a028a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/unit/transport/virtual/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,9 +506,9 @@ def test_list_bindings(self):
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
Expand Down

0 comments on commit 5a028a6

Please sign in to comment.