summaryrefslogtreecommitdiff
path: root/python/test/test_case.py
diff options
context:
space:
mode:
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():