diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-01-12 19:22:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-12 19:22:36 +0900 |
commit | 5569a4efcdc913d343eaff4e55c9b19fafde4268 (patch) | |
tree | 0c05339319e6f63d06eec2056fa23ccd0d8a3050 /test/test_unpack.py | |
parent | d9ec8fc905fc9ed37c86700f794adeb883b4f5ea (diff) | |
download | msgpack-python-5569a4efcdc913d343eaff4e55c9b19fafde4268.tar.gz |
s/raw_as_bytes/raw/g (#276)
fixes #273
Diffstat (limited to 'test/test_unpack.py')
-rw-r--r-- | test/test_unpack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_unpack.py b/test/test_unpack.py index 143f999..00a1061 100644 --- a/test/test_unpack.py +++ b/test/test_unpack.py @@ -48,7 +48,7 @@ def test_unpacker_ext_hook(): def __init__(self): super(MyUnpacker, self).__init__( - ext_hook=self._hook, raw_as_bytes=False) + ext_hook=self._hook, raw=False) def _hook(self, code, data): if code == 1: |