diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 00:04:23 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 00:04:23 +0200 |
commit | a077d8877d210562f703c23e9625e8467c81222d (patch) | |
tree | 47608f9f99d149634f6c5dcb755bdf534a096d45 /test/http/http2/test_frames.py | |
parent | 11e7f476bd4bbcd6d072fa3659f628ae3a19705d (diff) | |
download | mitmproxy-a077d8877d210562f703c23e9625e8467c81222d.tar.gz mitmproxy-a077d8877d210562f703c23e9625e8467c81222d.tar.bz2 mitmproxy-a077d8877d210562f703c23e9625e8467c81222d.zip |
finish netlib.http.http1 refactor
Diffstat (limited to 'test/http/http2/test_frames.py')
-rw-r--r-- | test/http/http2/test_frames.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http/http2/test_frames.py b/test/http/http2/test_frames.py index efdb55e2..4c89b023 100644 --- a/test/http/http2/test_frames.py +++ b/test/http/http2/test_frames.py @@ -39,7 +39,7 @@ def test_too_large_frames(): flags=Frame.FLAG_END_STREAM, stream_id=0x1234567, payload='foobar' * 3000) - tutils.raises(FrameSizeError, f.to_bytes) + tutils.raises(HttpSyntaxException, f.to_bytes) def test_data_frame_to_bytes(): |