diff options
| author | INADA Naoki <inada-n@klab.com> | 2012-12-22 13:09:35 +0900 |
|---|---|---|
| committer | INADA Naoki <inada-n@klab.com> | 2012-12-22 13:09:35 +0900 |
| commit | d796d696d193277504b76e4ba3144154bdc1163b (patch) | |
| tree | 13947e66cbb062798ad8c18a7acd7930954e1b5c /test/test_sequnpack.py | |
| parent | 833b85f1734a1f66ffc105f7272e402d68e661ed (diff) | |
| download | msgpack-python-d796d696d193277504b76e4ba3144154bdc1163b.tar.gz | |
revert unwanted changes.
Diffstat (limited to 'test/test_sequnpack.py')
| -rw-r--r-- | test/test_sequnpack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_sequnpack.py b/test/test_sequnpack.py index ca4c8db..f767726 100644 --- a/test/test_sequnpack.py +++ b/test/test_sequnpack.py @@ -46,7 +46,7 @@ def test_foobar_skip(): assert 1, "ok" def test_maxbuffersize(): - nose.tools.assert_raises(ValueError, Unpacker, read_size=5, max_buffer_size=3, use_list=1) + nose.tools.assert_raises(ValueError, Unpacker, read_size=5, max_buffer_size=3) unpacker = Unpacker(read_size=3, max_buffer_size=3, use_list=1) unpacker.feed(b'fo') nose.tools.assert_raises(BufferFull, unpacker.feed, b'ob') |
