diff options
| author | INADA Naoki <inada-n@klab.com> | 2012-09-24 02:12:55 +0900 |
|---|---|---|
| committer | INADA Naoki <inada-n@klab.com> | 2012-09-24 02:12:55 +0900 |
| commit | 60df5eadaf507594b73e5e5a887da1fc52cb3f32 (patch) | |
| tree | f711227eeda469676496d626576dc674524a882a /test/test_format.py | |
| parent | 96ed236c1d53e9ac4f3632ed82f15a1d6e0604da (diff) | |
| download | msgpack-python-60df5eadaf507594b73e5e5a887da1fc52cb3f32.tar.gz | |
Warn when use_list is not specified.
Diffstat (limited to 'test/test_format.py')
| -rw-r--r-- | test/test_format.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_format.py b/test/test_format.py index c03b3e2..ac08709 100644 --- a/test/test_format.py +++ b/test/test_format.py @@ -5,8 +5,8 @@ from nose import main from nose.tools import * from msgpack import unpackb -def check(src, should): - assert_equal(unpackb(src), should) +def check(src, should, use_list=0): + assert_equal(unpackb(src, use_list=use_list), should) def testSimpleValue(): check(b"\x93\xc0\xc2\xc3", |
