summaryrefslogtreecommitdiff
path: root/python/test/test_case.py
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-29 10:09:04 +0900
committerNaoki INADA <inada-n@eagle>2009-06-29 10:09:04 +0900
commit9015bd4ecfe7c30aef47d7c3c6fbc6fd4219eae0 (patch)
treea72e0395c3d7effc69cb9ea9d4a00905ea6b4d89 /python/test/test_case.py
parentfe2421275d1e0809a9658dbaa5b31fc535bcf32a (diff)
downloadmsgpack-python-9015bd4ecfe7c30aef47d7c3c6fbc6fd4219eae0.tar.gz
Fix error on packing unsigned long long.
Diffstat (limited to 'python/test/test_case.py')
-rw-r--r--python/test/test_case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/test_case.py b/python/test/test_case.py
index 3fafd8b..997027a 100644
--- a/python/test/test_case.py
+++ b/python/test/test_case.py
@@ -7,7 +7,7 @@ from msgpack import packs, unpacks
def check(length, obj):
v = packs(obj)
- assert_equal(len(v), length)
+ assert_equal(len(v), length, "%r length should be %r but get %r" % (obj, length, len(v)))
assert_equal(unpacks(v), obj)
def test_1():