diff options
-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) |