diff options
author | Gordon Sim <gsim@apache.org> | 2007-10-15 09:52:16 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-10-15 09:52:16 +0000 |
commit | b0f78fc025d36d39863049e9c05a6c9926c8eaab (patch) | |
tree | 777f3983ebcae121f5da3346786035e307c2ae29 /qpid/python/tests_0-10/queue.py | |
parent | 3d8980d94108250264ec73063b27f973b0b8e989 (diff) | |
download | qpid-python-b0f78fc025d36d39863049e9c05a6c9926c8eaab.tar.gz |
Remove default queue concept which is no longer applicable in 0-10.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@584719 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests_0-10/queue.py')
-rw-r--r-- | qpid/python/tests_0-10/queue.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/qpid/python/tests_0-10/queue.py b/qpid/python/tests_0-10/queue.py index d72d12f92d..7b3590d11b 100644 --- a/qpid/python/tests_0-10/queue.py +++ b/qpid/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: |