Update hack/jenkins/test-flake-chart/report_flakes/report_flake.go

Co-authored-by: Steven Powell <44844360+spowelljr@users.noreply.github.com>
pull/19217/head
錦南路之花 2024-06-25 22:03:02 +02:00 committed by Medya Ghazizadeh
parent 80a6ee4dce
commit 78f2a91769
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func ParseEnvironmentList(listFile string) ([]string, error) {
return strings.Split(strings.TrimSpace(string(data)), "\n"), nil
}
func GetTestSummariesFromGcp(pr, rootJob string, envList []string, client *storage.Client) (map[string]*ShortSummary, error) {
func TestSummariesFromGCP(pr, rootJob string, envList []string, client *storage.Client) (map[string]*ShortSummary, error) {
envToSummaries := map[string]*ShortSummary{}
for _, env := range envList {
if summary, err := getTestSummaryFromGCP(pr, rootJob, env, client); err == nil {