From c53ac022cb37788a0f5ba23800168c412ef488a3 Mon Sep 17 00:00:00 2001 From: yihuaf Date: Thu, 7 Mar 2024 11:18:41 -0800 Subject: [PATCH] Fix lint --- cmd/rerunfails.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/rerunfails.go b/cmd/rerunfails.go index 25df1861..aaa1bf39 100644 --- a/cmd/rerunfails.go +++ b/cmd/rerunfails.go @@ -125,7 +125,8 @@ func rerunFailed(ctx context.Context, opts *options, scanConfig testjson.ScanCon // extra clean up in the case that we error out in future // attempts. if err := os.Remove(rerunProfilePath); err != nil { - return fmt.Errorf("failed to remove coverprofile %s after combined with the main profile: %v", rerunProfilePath, err) + return fmt.Errorf("failed to remove coverprofile %s after combined with the main profile: %v", + rerunProfilePath, err) } }