aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/tools/console/test_commander.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mitmproxy/tools/console/test_commander.py')
-rw-r--r--test/mitmproxy/tools/console/test_commander.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/tools/console/test_commander.py b/test/mitmproxy/tools/console/test_commander.py
index ce789d30..6b42de76 100644
--- a/test/mitmproxy/tools/console/test_commander.py
+++ b/test/mitmproxy/tools/console/test_commander.py
@@ -25,7 +25,7 @@ class TestListCompleter:
for start, options, cycle in tests:
c = commander.ListCompleter(start, options)
for expected in cycle:
- assert c.cycle(True) == expected
+ assert c.cycle() == expected
class TestCommandEdit:
@@ -252,7 +252,7 @@ class TestCommandBuffer:
cb = commander.CommandBuffer(tctx.master)
cb.text = "foo bar"
cb.cursor = len(cb.text)
- cb.cycle_completion(True)
+ cb.cycle_completion()
ch = commander.CommandHistory(tctx.master, 30)
ce = commander.CommandEdit(tctx.master, "se", ch)