Remove too strict type check from test.

This commit is contained in:
INADA Naoki 2014-02-14 09:26:46 +09:00
parent a5368f62e2
commit 213f7888c3

View file

@ -12,7 +12,6 @@ from io import BytesIO
def check(data, use_list=False): def check(data, use_list=False):
re = unpackb(packb(data), use_list=use_list) re = unpackb(packb(data), use_list=use_list)
assert re == data assert re == data
assert type(re) == type(data)
def testPack(): def testPack():
test_data = [ test_data = [