diff --git a/test/integration/helpers.go b/test/integration/helpers.go index 9f35eeb347ab23f3b2f3588ae9d63cc69b4975f3..e7e9c218abb2edc9237149630802e76f8bc0bb26 100644 --- a/test/integration/helpers.go +++ b/test/integration/helpers.go @@ -89,7 +89,6 @@ func (rr RunResult) Output() string { func Run(t *testing.T, cmd *exec.Cmd) (*RunResult, error) { t.Helper() rr := &RunResult{Args: cmd.Args} - t.Logf("(dbg) Run: %v", rr.Command()) var outb, errb bytes.Buffer @@ -120,7 +119,7 @@ type StartSession struct { } // Start starts a process in the background, streaming output -func Start(t *testing.T, cmd *exec.Cmd, powershell ...bool) (*StartSession, error) { +func Start(t *testing.T, cmd *exec.Cmd) (*StartSession, error) { t.Helper() t.Logf("(dbg) daemon: %v", cmd.Args) stdoutPipe, err := cmd.StdoutPipe()