diff options
author | Alan Conway <aconway@apache.org> | 2007-03-19 20:02:29 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-03-19 20:02:29 +0000 |
commit | f934d8a2d5d91d802fcc791a8492bd92abafc327 (patch) | |
tree | 7c5b7375724054348150b8ab714f0f3f79733f12 /python/tests/basic.py | |
parent | ce22dfa716f7b2727ead7693cac014b278421b0c (diff) | |
download | qpid-python-f934d8a2d5d91d802fcc791a8492bd92abafc327.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/qpid@520073 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests/basic.py')
-rw-r--r-- | python/tests/basic.py | 2 |
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) |