diff --git a/test/mitmproxy/tools/console/test_commander.py b/test/mitmproxy/tools/console/test_commander.py index 8fc678fb5..a77be0432 100644 --- a/test/mitmproxy/tools/console/test_commander.py +++ b/test/mitmproxy/tools/console/test_commander.py @@ -1,7 +1,8 @@ -from mitmproxy.tools.console.commander import commander -from mitmproxy.test import taddons import pytest +from mitmproxy.test import taddons +from mitmproxy.tools.console.commander import commander + class TestListCompleter: def test_cycle(self): @@ -265,6 +266,7 @@ class TestCommandBuffer: ('commander_hint', 'option '), ('commander_hint', 'value '), ] + def test_render(self): with taddons.context() as tctx: cb = commander.CommandBuffer(tctx.master) @@ -288,4 +290,4 @@ class TestCommandBuffer: ('text', ' '), ('commander_hint', 'option '), ('commander_hint', 'value '), - ] \ No newline at end of file + ]