We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd73cc8 commit f233e44Copy full SHA for f233e44
tests/test_completion.py
@@ -275,7 +275,7 @@ def test_cmd2_help_completion_nomatch(cmd2_app):
275
def test_set_allow_style_completion(cmd2_app):
276
"""Confirm that completing allow_style presents AllowStyle strings"""
277
text = ''
278
- line = 'set allow_style'.format()
+ line = 'set allow_style'
279
endidx = len(line)
280
begidx = endidx - len(text)
281
@@ -289,7 +289,7 @@ def test_set_allow_style_completion(cmd2_app):
289
def test_set_bool_completion(cmd2_app):
290
"""Confirm that completing a boolean Settable presents true and false strings"""
291
292
- line = 'set debug'.format()
+ line = 'set debug'
293
294
295
0 commit comments