Skip to content
Merged
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: 4 additions & 0 deletions pkg/cli/zip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,10 @@ func eraseNonDeterministicZipOutput(out string) string {
re = regexp.MustCompile(`(?m)^\[node \d+\] \d+ execution traces found$`)
out = re.ReplaceAllString(out, `[node ?] ? execution traces found`)

// Remove license-related NOTICE messages that may appear intermittently.
re = regexp.MustCompile(`(?m)^NOTICE: No license is installed.*\n?`)
out = re.ReplaceAllString(out, ``)

return out
}

Expand Down