diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2021-11-11 15:58:07 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2021-11-11 15:58:07 -0500 |
commit | f4f93f51c21a9aa4d1bc97f2b9dca1563d1f1b87 (patch) | |
tree | 421ee45f0d5b59bc59ce3f59f66ce3aa9646565b | |
parent | 28bdb95371cf1f9a6389998d0a5695a5672747b9 (diff) | |
download | cmd2-git-2.3.0.tar.gz |
Updated change log2.3.0
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | tests_isolated/test_commandset/test_commandset.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4df103c2..68c3fd8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.3.0 (TBD, 2021) +## 2.3.0 (November 11, 2021) * Bug Fixes * Fixed `AttributeError` in `rl_get_prompt()` when prompt is `None`. * Fixed bug where using choices on a Settable didn't verify that a valid choice had been entered. diff --git a/tests_isolated/test_commandset/test_commandset.py b/tests_isolated/test_commandset/test_commandset.py index fb4ccd0f..e9fba114 100644 --- a/tests_isolated/test_commandset/test_commandset.py +++ b/tests_isolated/test_commandset/test_commandset.py @@ -749,7 +749,7 @@ class SupportFuncUserUnrelated(cmd2.CommandSet): def test_cross_commandset_completer(command_sets_manual, capsys): global complete_states_expected_self # This tests the different ways to locate the matching CommandSet when completing an argparse argument. - # Exercises the 3 cases in cmd2.Cmd._resolve_func_self(). + # Exercises the 3 cases in cmd2.Cmd._resolve_func_self() which is called during argparse tab completion. # Create all the CommandSets for these tests func_provider = SupportFuncProvider(1) |