summaryrefslogtreecommitdiff
path: root/qpid/python/tests_0-10/tx.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-10-11 13:29:37 +0000
committerGordon Sim <gsim@apache.org>2007-10-11 13:29:37 +0000
commit28cdc6dc38269d56896d981a2accb691e554efda (patch)
tree3ad42ef80c20e3b8f0d79d358860eaae6851f09a /qpid/python/tests_0-10/tx.py
parent241e97ab6b5401d0375ebd9bf247e70c05030c7a (diff)
downloadqpid-python-28cdc6dc38269d56896d981a2accb691e554efda.tar.gz
Exclusive no longer implies auto-delete on queue.declare.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@583821 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests_0-10/tx.py')
-rw-r--r--qpid/python/tests_0-10/tx.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/python/tests_0-10/tx.py b/qpid/python/tests_0-10/tx.py
index 84c07d51c1..6a682e9ae7 100644
--- a/qpid/python/tests_0-10/tx.py
+++ b/qpid/python/tests_0-10/tx.py
@@ -155,9 +155,9 @@ class TxTests(TestBase):
commit and rollback
"""
#setup:
- channel.queue_declare(queue=name_a, exclusive=True)
- channel.queue_declare(queue=name_b, exclusive=True)
- channel.queue_declare(queue=name_c, exclusive=True)
+ channel.queue_declare(queue=name_a, exclusive=True, auto_delete=True)
+ channel.queue_declare(queue=name_b, exclusive=True, auto_delete=True)
+ channel.queue_declare(queue=name_c, exclusive=True, auto_delete=True)
key = "my_key_" + name_b
topic = "my_topic_" + name_c