Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/aro/release-webserver/html_release_summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func summaryForEnvironment(environmentName string, environmentToEnvironmentRelea
}

if len(lines) == 0 {
return "Latest stage release was first tested in integration."
return "Latest stage release was previously tested in integration."
}
return template.HTML(fmt.Sprintf(`
<ul>
Expand All @@ -268,7 +268,7 @@ func summaryForEnvironment(environmentName string, environmentToEnvironmentRelea
}

if len(lines) == 0 {
return "Latest production release was first tested in staging."
return "Latest production release was previously tested in staging."
}
return template.HTML(fmt.Sprintf(`
<ul>
Expand Down