summaryrefslogtreecommitdiff
path: root/qpid/python/tests/basic.py
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-03-19 20:02:29 +0000
committerAlan Conway <aconway@apache.org>2007-03-19 20:02:29 +0000
commite99f2ccaab3d3f2ec4733b57c51bce52df8fc790 (patch)
tree3e4b2647218d4e7d1f0014d9c69d93b962e2a4e5 /qpid/python/tests/basic.py
parent12f96a3a954c2827a9fd80466d01b91942669ea3 (diff)
downloadqpid-python-e99f2ccaab3d3f2ec4733b57c51bce52df8fc790.tar.gz
Merged revisions 504601-504602,504604-504609,504611-504702,504704-504707,504709-504849 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9 ........ r504601 | gsim | 2007-02-07 11:09:16 -0500 (Wed, 07 Feb 2007) | 3 lines Added list of valid responses to method descriptions where appropriate. ........ r504700 | aconway | 2007-02-07 16:30:32 -0500 (Wed, 07 Feb 2007) | 2 lines Use self.queue_open to ensure deletion of queue - was clashing with message.py tests. ........ r504849 | gsim | 2007-02-08 05:14:50 -0500 (Thu, 08 Feb 2007) | 3 lines Fixes to qos and get tests. Added test for correct completion of references. ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@520073 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests/basic.py')
-rw-r--r--qpid/python/tests/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/tests/basic.py b/qpid/python/tests/basic.py
index 140576540a..0100b8ee3e 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", 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)