From 7518897a1400a4e0d8cb1419ce98867034171e66 Mon Sep 17 00:00:00 2001 From: Keith Patrick Date: Fri, 20 Mar 2026 16:07:59 +0000 Subject: [PATCH] fix gci formatting in env_test.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 💘 Generated with Crush Assisted-by: MiniMax-M2.5 via Crush --- pkg/tools/shell/env_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/tools/shell/env_test.go b/pkg/tools/shell/env_test.go index f4fc83bf7..c80f36c46 100644 --- a/pkg/tools/shell/env_test.go +++ b/pkg/tools/shell/env_test.go @@ -74,9 +74,9 @@ func TestMergeEnvVars_LLMBlocked(t *testing.T) { // LLM tries to override PATH and add PICOCLAW_SECRET llmEnv := map[string]string{ - "PATH": "/hacked/path", // Should be blocked + "PATH": "/hacked/path", // Should be blocked "PICOCLAW_SECRET": "should-be-blocked", // Should be blocked by prefix - "USER_VAR": "user-value", // Should be allowed + "USER_VAR": "user-value", // Should be allowed } result := MergeEnvVars(baseEnv, nil, llmEnv)