summaryrefslogtreecommitdiff
path: root/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
commitf46498bcdfc862f9073ea7f520514cd722b03616 (patch)
treeaed49482489567f1cf94a4a44bdf6c8cd05f54fc /test/test_case.py
parentca0bda01f116f04f98009f13e1bc9def8200cbb6 (diff)
downloadmsgpack-python-f46498bcdfc862f9073ea7f520514cd722b03616.tar.gz
Fix error on packing unsigned long long.
Diffstat (limited to 'test/test_case.py')
-rw-r--r--test/test_case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_case.py b/test/test_case.py
index 3fafd8b..997027a 100644
--- a/test/test_case.py
+++ b/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():