style: fix gofumpt formatting

This commit is contained in:
Hakancan 2026-03-11 17:14:00 +00:00
parent e05013f70c
commit 21cd92efe9

View file

@ -500,7 +500,7 @@ func TestShellTool_FileURISandboxing(t *testing.T) {
// These file:// URIs should be allowed if they reference paths inside the workspace. // These file:// URIs should be allowed if they reference paths inside the workspace.
// Create a test file inside the temp directory // Create a test file inside the temp directory
testFile := filepath.Join(tmpDir, "test.txt") 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) t.Fatalf("failed to create test file: %s", err)
} }