From 143e0b952e77e5a2d487ffd7cad0fc82bdeeb45c Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Mon, 15 Oct 2007 09:52:16 +0000 Subject: Remove default queue concept which is no longer applicable in 0-10. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@584719 13f79535-47bb-0310-9956-ffa450edef68 --- python/tests_0-10/queue.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'python') diff --git a/python/tests_0-10/queue.py b/python/tests_0-10/queue.py index d72d12f92d..7b3590d11b 100644 --- a/python/tests_0-10/queue.py +++ b/python/tests_0-10/queue.py @@ -126,11 +126,8 @@ class QueueTests(TestBase): #straightforward case, both exchange & queue exist so no errors expected: channel.queue_bind(queue="queue-1", exchange="amq.direct", routing_key="key1") - #bind the default queue for the channel (i.e. last one declared): - channel.queue_bind(exchange="amq.direct", routing_key="key2") - - #use the queue name where neither routing key nor queue are specified: - channel.queue_bind(exchange="amq.direct") + #use the queue name where the routing key is not specified: + channel.queue_bind(queue="queue-1", exchange="amq.direct") #try and bind to non-existant exchange try: -- cgit v1.2.1