summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2016-12-07 15:58:56 -0800
committerAsk Solem <ask@celeryproject.org>2016-12-07 15:58:56 -0800
commit5a028a690653d23008f7eb4ac6612273c51479b9 (patch)
treef06c00605ec701724b1439fa51d1331ebfd2b977
parentc95163cab275a97e6db1906690b39ae87d8e02b2 (diff)
downloadkombu-5a028a690653d23008f7eb4ac6612273c51479b9.tar.gz
Fixes failing test case
-rw-r--r--t/unit/transport/virtual/test_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/unit/transport/virtual/test_base.py b/t/unit/transport/virtual/test_base.py
index 3256ab48..70727414 100644
--- a/t/unit/transport/virtual/test_base.py
+++ b/t/unit/transport/virtual/test_base.py
@@ -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