From f372ca0c9485e9b5828137af12725b77ec8dfa48 Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Fri, 17 Apr 2026 13:14:27 -0400 Subject: [PATCH 1/3] Apply suggested fix to tests/test_repl/test_shell.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/test_repl/test_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_repl/test_shell.py b/tests/test_repl/test_shell.py index f48efa8..aa6a277 100644 --- a/tests/test_repl/test_shell.py +++ b/tests/test_repl/test_shell.py @@ -144,7 +144,7 @@ def test_run_single_command(): """ @recline.command(name="single command one shot") - def single_cmd(): + def single_cmd_one_shot(): return 73 assert shell.relax(argv=["ut_program"], single_command="single command one shot") == 73 From 1c6bd8b6afd4db761831325453b3fa640bd4c3ab Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Fri, 17 Apr 2026 13:14:27 -0400 Subject: [PATCH 2/3] Apply suggested fix to tests/test_repl/test_shell.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/test_repl/test_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_repl/test_shell.py b/tests/test_repl/test_shell.py index aa6a277..8bc999d 100644 --- a/tests/test_repl/test_shell.py +++ b/tests/test_repl/test_shell.py @@ -132,7 +132,7 @@ def test_run_non_repl(): """ @recline.command(name="single command non repl") - def single_cmd(): + def single_cmd_non_repl(): return 73 assert shell.relax(argv=["ut_program", "single", "command", "non", "repl"], repl_mode=False) == 73 From a9435d7529768b36ea730946e7e76f16f978e287 Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Fri, 17 Apr 2026 13:14:28 -0400 Subject: [PATCH 3/3] Apply suggested fix to tests/test_repl/test_shell.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/test_repl/test_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_repl/test_shell.py b/tests/test_repl/test_shell.py index 8bc999d..da61287 100644 --- a/tests/test_repl/test_shell.py +++ b/tests/test_repl/test_shell.py @@ -76,7 +76,7 @@ def mock_eof(prompt): monkeypatch.setattr(builtins, "input", mock_eof) @recline.command(atstart=True) - def startup(): + def startup_test_command(): nonlocal startup_command_ran startup_command_ran = True