diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-17 17:29:55 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-17 17:29:55 +0200 |
commit | 266b80238db34cfa91f9018c951394492bbde593 (patch) | |
tree | da8e4ab52134d60f17e91f4aabe51c62c70df54b /test/test_utils.py | |
parent | d798ed955dab4681a5285024b3648b1a3f13c24e (diff) | |
download | mitmproxy-266b80238db34cfa91f9018c951394492bbde593.tar.gz mitmproxy-266b80238db34cfa91f9018c951394492bbde593.tar.bz2 mitmproxy-266b80238db34cfa91f9018c951394492bbde593.zip |
fix tests
Diffstat (limited to 'test/test_utils.py')
-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 ff27486c..fb7d357a 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -11,7 +11,7 @@ def test_bidi(): def test_hexdump(): - assert utils.hexdump("one\0" * 10) + assert list(utils.hexdump("one\0" * 10)) def test_clean_bin(): |