From 21cd92efe9a90837941fd9c7c5d8a42066e9aa68 Mon Sep 17 00:00:00 2001 From: Hakancan Date: Wed, 11 Mar 2026 17:14:00 +0000 Subject: [PATCH] style: fix gofumpt formatting --- pkg/tools/shell_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tools/shell_test.go b/pkg/tools/shell_test.go index 153185b47..5878fc4b3 100644 --- a/pkg/tools/shell_test.go +++ b/pkg/tools/shell_test.go @@ -500,7 +500,7 @@ func TestShellTool_FileURISandboxing(t *testing.T) { // These file:// URIs should be allowed if they reference paths inside the workspace. // Create a test file inside the temp directory testFile := filepath.Join(tmpDir, "test.txt") - if err := os.WriteFile(testFile, []byte("test content"), 0644); err != nil { + if err := os.WriteFile(testFile, []byte("test content"), 0o644); err != nil { t.Fatalf("failed to create test file: %s", err) }