diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-17 17:32:59 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-17 17:32:59 +0200 |
commit | f2c87cff8adc8099ef8c3a85adf314e303c475b7 (patch) | |
tree | 955eb7dd8015bd30c49242671096ed2eec58de14 /test | |
parent | 266b80238db34cfa91f9018c951394492bbde593 (diff) | |
download | mitmproxy-f2c87cff8adc8099ef8c3a85adf314e303c475b7.tar.gz mitmproxy-f2c87cff8adc8099ef8c3a85adf314e303c475b7.tar.bz2 mitmproxy-f2c87cff8adc8099ef8c3a85adf314e303c475b7.zip |
fix py3 tests
Diffstat (limited to 'test')
-rw-r--r-- | test/test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index fb7d357a..8f4b4059 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(): |