diff options
author | Gordon Sim <gsim@apache.org> | 2006-11-22 19:05:27 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2006-11-22 19:05:27 +0000 |
commit | 6eb649e888e16fe966b8df48b6ccb2e020d52b62 (patch) | |
tree | 7377fb098b63b89ee1ef05b0e229b1404768ae7e /qpid/python/tests/basic.py | |
parent | 6698bb0ba2b16b9e761ac27b00ddb7def9ce7973 (diff) | |
download | qpid-python-6eb649e888e16fe966b8df48b6ccb2e020d52b62.tar.gz |
Fixes for cleaning up behind tests that fail on re-run if broker is not restarted.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@478287 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests/basic.py')
-rw-r--r-- | qpid/python/tests/basic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests/basic.py b/qpid/python/tests/basic.py index 6cc0d727d5..591d2d296f 100644 --- a/qpid/python/tests/basic.py +++ b/qpid/python/tests/basic.py @@ -147,7 +147,7 @@ class BasicTests(TestBase): Test basic ack/recover behaviour """ channel = self.channel - channel.queue_declare(queue="test-ack-queue") + channel.queue_declare(queue="test-ack-queue", exclusive=True) reply = channel.basic_consume(queue="test-ack-queue", no_ack=False) queue = self.client.queue(reply.consumer_tag) @@ -191,7 +191,7 @@ class BasicTests(TestBase): Test requeing on recovery """ channel = self.channel - channel.queue_declare(queue="test-requeue") + channel.queue_declare(queue="test-requeue", exclusive=True) subscription = channel.basic_consume(queue="test-requeue", no_ack=False) queue = self.client.queue(subscription.consumer_tag) |