summaryrefslogtreecommitdiff
path: root/python/tests_0-10/tx.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests_0-10/tx.py')
-rw-r--r--python/tests_0-10/tx.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests_0-10/tx.py b/python/tests_0-10/tx.py
index 84c07d51c1..6a682e9ae7 100644
--- a/python/tests_0-10/tx.py
+++ b/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