We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f549a commit b9e9199Copy full SHA for b9e9199
test/test_sequnpack.py
@@ -20,7 +20,7 @@ def test_partialdata():
20
unpacker.feed(b'l')
21
with raises(StopIteration): next(iter(unpacker))
22
unpacker.feed(b'o')
23
- assert next(iter(unpacker)) == 'hallo'
+ assert next(iter(unpacker)) == b'hallo'
24
25
def test_foobar():
26
unpacker = Unpacker(read_size=3, use_list=1)
0 commit comments