From d796d696d193277504b76e4ba3144154bdc1163b Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Sat, 22 Dec 2012 13:09:35 +0900 Subject: [PATCH] revert unwanted changes. --- test/test_obj.py | 2 +- test/test_sequnpack.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_obj.py b/test/test_obj.py index bfc9ab2..1d9024b 100644 --- a/test/test_obj.py +++ b/test/test_obj.py @@ -34,7 +34,7 @@ def test_decode_pairs_hook(): @raises(ValueError) def test_only_one_obj_hook(): - unpackb(b'', object_hook=lambda x: x, object_pairs_hook=lambda x: x, use_list=1) + unpackb(b'', object_hook=lambda x: x, object_pairs_hook=lambda x: x) @raises(ValueError) def test_bad_hook(): 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')