diff --git a/tests/test_argx.py b/tests/test_argx.py index 637c42fe..b81b8c63 100644 --- a/tests/test_argx.py +++ b/tests/test_argx.py @@ -80,9 +80,9 @@ def test_extended_command_has_function_help() -> None: cli.extend_commands(sl) - help = cli.subparsers.choices[sl.bbb.__name__].format_help() + help_text = cli.subparsers.choices[sl.bbb.__name__].format_help() assert sl.bbb.__doc__ is not None - assert sl.bbb.__doc__ in help + assert sl.bbb.__doc__ in help_text class DescriptorCLI(CommandLineTool):