summaryrefslogtreecommitdiff
path: root/python/tests
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-02-07 21:30:32 +0000
committerAlan Conway <aconway@apache.org>2007-02-07 21:30:32 +0000
commit0ff800512262e7215937b23fdca879cfd1ae0813 (patch)
tree38ed15f51d9781cbf2f7f5ff5a356dfe9858e3ec /python/tests
parenteefcf2aca6af14666dfb79b14ddcd5309ba52feb (diff)
downloadqpid-python-0ff800512262e7215937b23fdca879cfd1ae0813.tar.gz
Use self.queue_open to ensure deletion of queue - was clashing with message.py tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@504700 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests')
-rw-r--r--python/tests/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/basic.py b/python/tests/basic.py
index 140576540a..0100b8ee3e 100644
--- a/python/tests/basic.py
+++ b/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", exclusive=True)
+ self.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)