diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-06 13:22:41 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-06 13:22:41 -0400 |
commit | 53f6c07559f2c15656423dbbb92471758e8c6d20 (patch) | |
tree | 6066617c2d692ab386ad9b4a4f3206875a4a257a /tests/test_cmd2.py | |
parent | 67445d49af8db72f9e27a8d47449d0b5ed1e6b9c (diff) | |
download | cmd2-git-53f6c07559f2c15656423dbbb92471758e8c6d20.tar.gz |
Added ability to limit how many CompletionItems display at a time
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 4e05283e..f1d366f7 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1526,7 +1526,7 @@ def test_get_macro_completion_items(base_app): assert cur_res in base_app.macros assert cur_res.description == base_app.macros[cur_res].value -def test_get_settable_names(base_app): +def test_get_settable_completion_items(base_app): results = base_app._get_settable_completion_items() for cur_res in results: assert cur_res in base_app.settable |