Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuaf committed Apr 18, 2024
1 parent 35f7e6f commit c53ac02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/rerunfails.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit c53ac02

Please sign in to comment.