From 3ba1f6b090f47a8a6498a304c11d86c9e1151f74 Mon Sep 17 00:00:00 2001 From: Roey Berman Date: Mon, 18 Nov 2024 16:30:01 -0800 Subject: [PATCH] Remove outdated comment --- tools/testrunner/testrunner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/testrunner/testrunner.go b/tools/testrunner/testrunner.go index 43ce3342fa2..20c22a0db86 100644 --- a/tools/testrunner/testrunner.go +++ b/tools/testrunner/testrunner.go @@ -50,7 +50,6 @@ type attempt struct { func (a *attempt) run(ctx context.Context, args []string) error { args = append([]string{"--junitfile", a.junitXmlPath}, args...) log.Printf("starting test attempt %d with args: %v", a.number, args) - // This must run from the repo root. cmd := exec.CommandContext(ctx, a.runner.gotestsumExecutable, args...) cmd.Stderr = os.Stderr cmd.Stdout = os.Stdout