From 6107d64ed1458e4e3038fa25b9286837212f51b4 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Tue, 13 May 2008 17:23:35 +0000 Subject: QPID-1055: use int64 for encoding python both python int and longs; this ensures consistent behavior on both 64 bit and non 64 bit systems git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@655951 13f79535-47bb-0310-9956-ffa450edef68 --- python/tests/codec010.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/tests/codec010.py') diff --git a/python/tests/codec010.py b/python/tests/codec010.py index 65d4525758..bd3f875ac4 100644 --- a/python/tests/codec010.py +++ b/python/tests/codec010.py @@ -32,7 +32,7 @@ class CodecTest(TestCase): sc = StringCodec(self.spec) t.encode(sc, value) decoded = t.decode(sc) - assert decoded == value + assert decoded == value, "%s, %s" % (decoded, value) def testMapString(self): self.check("map", {"string": "this is a test"}) -- cgit v1.2.1