From 3a22d55d201afc46a2946e034fe9de0eecaa14e4 Mon Sep 17 00:00:00 2001 From: Keith Patrick Date: Fri, 20 Mar 2026 16:11:39 +0000 Subject: [PATCH] fix gci formatting - add space 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tools/shell/env_test.go b/pkg/tools/shell/env_test.go index c80f36c46..709630232 100644 --- a/pkg/tools/shell/env_test.go +++ b/pkg/tools/shell/env_test.go @@ -76,7 +76,7 @@ func TestMergeEnvVars_LLMBlocked(t *testing.T) { llmEnv := map[string]string{ "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)