From 4e3fb2db16f9fbca34886216211eb3f843feb609 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman Date: Sun, 5 Apr 2026 23:36:13 +0000 Subject: [PATCH] fix: Remove mix_stderr from robot helper script Found and fixed another instance of mix_stderr usage in robot/helper_plan_cli_spec.py that was causing E2E test failures. Click 8.2+ no longer supports this parameter. --- robot/helper_plan_cli_spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot/helper_plan_cli_spec.py b/robot/helper_plan_cli_spec.py index 8961aaa90..1ac27602d 100644 --- a/robot/helper_plan_cli_spec.py +++ b/robot/helper_plan_cli_spec.py @@ -246,7 +246,7 @@ def list_columns() -> None: return_value=mock_service, ): # Use a wide terminal so column headers are not truncated - wide_runner = CliRunner(mix_stderr=False) + wide_runner = CliRunner() result = wide_runner.invoke(plan_app, ["list"], env={"COLUMNS": "200"}) if result.exit_code != 0: print(f"FAIL: list returned {result.exit_code}", file=sys.stderr)