fix py3 tests

This commit is contained in:
Maximilian Hils 2015-09-17 17:32:59 +02:00
parent 266b80238d
commit f2c87cff8a
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ def test_bidi():
def test_hexdump():
assert list(utils.hexdump("one\0" * 10))
assert list(utils.hexdump(b"one\0" * 10))
def test_clean_bin():