From c6d1bda9c21c532218e0f78d6a5b1ff9cc914cfa Mon Sep 17 00:00:00 2001 From: DevmateGolangLintFixer Bot Date: Mon, 3 Aug 2026 08:15:43 -0700 Subject: [PATCH] fbcode/security/redteam/purple_team/ttpforge/pkg/testutils/kill_unix.go (#635) Summary: Pull Request resolved: https://github.com/facebookincubator/TTPForge/pull/635 Reviewed By: echistyakov Differential Revision: D114558545 --- pkg/testutils/kill_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/testutils/kill_unix.go b/pkg/testutils/kill_unix.go index 5932dd3f..08e8e303 100644 --- a/pkg/testutils/kill_unix.go +++ b/pkg/testutils/kill_unix.go @@ -31,7 +31,7 @@ func CreateProcessToTerminate() (int, error) { cmd := exec.Command("ping", "-n", "60", "127.0.0.1") err := cmd.Start() if err != nil { - return 0, fmt.Errorf("Failed to start process: %w", err) + return 0, fmt.Errorf("failed to start process: %w", err) } pid := cmd.Process.Pid return pid, nil