From f2c87cff8adc8099ef8c3a85adf314e303c475b7 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 17 Sep 2015 17:32:59 +0200 Subject: [PATCH] fix py3 tests --- test/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utils.py b/test/test_utils.py index fb7d357a8..8f4b40593 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -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():