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 2008/08/12 17:39:06 UTC

svn commit: r685189 - /incubator/qpid/branches/qpid.0-10/python/tests/spec010.py

Author: gsim
Date: Tue Aug 12 08:39:06 2008
New Revision: 685189

URL: http://svn.apache.org/viewvc?rev=685189&view=rev
Log:
use decimal literal (python 2.3 converts the old hex literal into a negative value)

Modified:
    incubator/qpid/branches/qpid.0-10/python/tests/spec010.py

Modified: incubator/qpid/branches/qpid.0-10/python/tests/spec010.py
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-10/python/tests/spec010.py?rev=685189&r1=685188&r2=685189&view=diff
==============================================================================
--- incubator/qpid/branches/qpid.0-10/python/tests/spec010.py (original)
+++ incubator/qpid/branches/qpid.0-10/python/tests/spec010.py Tue Aug 12 08:39:06 2008
@@ -49,7 +49,7 @@
     mp = self.spec["message.message_properties"]
     rt = self.spec["message.reply_to"]
 
-    props = Struct(mp, content_length=0xDEADBEEF,
+    props = Struct(mp, content_length=3735928559L,
                    reply_to=Struct(rt, exchange="the exchange name",
                                    routing_key="the routing key"))
     dec = self.encdec(mp, props)