diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/test_command.py b/test/mitmproxy/test_command.py index 066cbf15..47680c99 100644 --- a/test/mitmproxy/test_command.py +++ b/test/mitmproxy/test_command.py @@ -153,7 +153,7 @@ def test_simple(): def test_typename(): assert command.typename(str, True) == "str" assert command.typename(typing.Sequence[flow.Flow], True) == "[flow]" - assert command.typename(typing.Sequence[flow.Flow], False) == "flowspec" + assert command.typename(typing.Sequence[flow.Flow], False) == "[flow]" assert command.typename(command.Cuts, True) == "[cuts]" assert command.typename(typing.Sequence[command.Cut], False) == "[cut]" |