You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/02/07 22:30:33 UTC

svn commit: r504700 - /incubator/qpid/branches/qpid.0-9/python/tests/basic.py

Author: aconway
Date: Wed Feb  7 13:30:32 2007
New Revision: 504700

URL: http://svn.apache.org/viewvc?view=rev&rev=504700
Log:
Use self.queue_open to ensure deletion of queue - was clashing with message.py tests.

Modified:
    incubator/qpid/branches/qpid.0-9/python/tests/basic.py

Modified: incubator/qpid/branches/qpid.0-9/python/tests/basic.py
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/python/tests/basic.py?view=diff&rev=504700&r1=504699&r2=504700
==============================================================================
--- incubator/qpid/branches/qpid.0-9/python/tests/basic.py (original)
+++ incubator/qpid/branches/qpid.0-9/python/tests/basic.py Wed Feb  7 13:30:32 2007
@@ -147,7 +147,7 @@
         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)