You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2007/02/16 14:54:55 UTC

svn commit: r508396 - /incubator/qpid/branches/qpid.0-9/python/tests/message.py

Author: gsim
Date: Fri Feb 16 05:54:54 2007
New Revision: 508396

URL: http://svn.apache.org/viewvc?view=rev&rev=508396
Log:
Fix: use message_resume not channel_resume


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

Modified: incubator/qpid/branches/qpid.0-9/python/tests/message.py
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/python/tests/message.py?view=diff&rev=508396&r1=508395&r2=508396
==============================================================================
--- incubator/qpid/branches/qpid.0-9/python/tests/message.py (original)
+++ incubator/qpid/branches/qpid.0-9/python/tests/message.py Fri Feb 16 05:54:54 2007
@@ -630,7 +630,7 @@
         channel = self.client.channel(2)
         channel.channel_open()
         channel.message_consume(queue = "q", destination = "consumer")
-        offset = channel.channel_resume(reference="my-ref", identifier="my-checkpoint").value
+        offset = channel.message_resume(reference="my-ref", identifier="my-checkpoint").value
         self.assertEquals(offset, 16)
         channel.message_append(reference="my-ref", bytes="qrstuvwxyz")
         channel.synchronous = False