diff options
Diffstat (limited to 'test/test_sequnpack.py')
-rw-r--r-- | test/test_sequnpack.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_sequnpack.py b/test/test_sequnpack.py index df6e308..c92658c 100644 --- a/test/test_sequnpack.py +++ b/test/test_sequnpack.py @@ -1,13 +1,11 @@ #!/usr/bin/env python # coding: utf-8 -from __future__ import unicode_literals - from msgpack import Unpacker def test_foobar(): unpacker = Unpacker(read_size=3) - unpacker.feed(b'foobar') + unpacker.feed('foobar') assert unpacker.unpack() == ord(b'f') assert unpacker.unpack() == ord(b'o') assert unpacker.unpack() == ord(b'o') |