diff options
author | Naoki INADA <inada-n@eagle> | 2009-06-29 10:09:04 +0900 |
---|---|---|
committer | Naoki INADA <inada-n@eagle> | 2009-06-29 10:09:04 +0900 |
commit | 9015bd4ecfe7c30aef47d7c3c6fbc6fd4219eae0 (patch) | |
tree | a72e0395c3d7effc69cb9ea9d4a00905ea6b4d89 /python/test | |
parent | fe2421275d1e0809a9658dbaa5b31fc535bcf32a (diff) | |
download | msgpack-python-9015bd4ecfe7c30aef47d7c3c6fbc6fd4219eae0.tar.gz |
Fix error on packing unsigned long long.
Diffstat (limited to 'python/test')
-rw-r--r-- | python/test/test_case.py | 2 |
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(): |