From 830456e02722b20315b7a01038bc1217307ee168 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Thu, 5 May 2022 14:00:21 -0700 Subject: [PATCH] correct coverage MainStart argument order --- pkg/util/coverage/coverage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/coverage/coverage.go b/pkg/util/coverage/coverage.go index 3a3106f3672..f8e38917089 100644 --- a/pkg/util/coverage/coverage.go +++ b/pkg/util/coverage/coverage.go @@ -82,7 +82,7 @@ func FlushCoverage() { var deps fakeTestDeps - dummyRun := testing.MainStart(deps, tests, fuzztargets, benchmarks, examples) + dummyRun := testing.MainStart(deps, tests, benchmarks, fuzztargets, examples) dummyRun.Run() // Once it writes to the temporary path, we move it to the intended path.