mirror of
https://github.com/msgpack/msgpack-c.git
synced 2026-01-03 20:01:44 +01:00
Fix error on packing unsigned long long.
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user