diff options
Diffstat (limited to 'test/mitmproxy/test_flow_format_compat.py')
-rw-r--r-- | test/mitmproxy/test_flow_format_compat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/test_flow_format_compat.py b/test/mitmproxy/test_flow_format_compat.py index 7a0694e1..2c477cc2 100644 --- a/test/mitmproxy/test_flow_format_compat.py +++ b/test/mitmproxy/test_flow_format_compat.py @@ -1,4 +1,4 @@ -from mitmproxy.flow import FlowReader, FlowReadError +from mitmproxy.flow import FlowReader, FlowReadException from . import tutils @@ -13,5 +13,5 @@ def test_load(): def test_cannot_convert(): with open(tutils.test_data.path("data/dumpfile-012"), "rb") as f: flow_reader = FlowReader(f) - with tutils.raises(FlowReadError): + with tutils.raises(FlowReadException): list(flow_reader.stream()) |