From f6297316099e4892127d4ace8409da204d4b775c Mon Sep 17 00:00:00 2001 From: Edward Evans Date: Thu, 29 Jun 2023 10:32:11 +1000 Subject: [PATCH] Fix failures introduced in #343 --- tests/test_argx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):