We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4600cd3 commit 0e73369Copy full SHA for 0e73369
pkg/cli/zip_test.go
@@ -698,6 +698,10 @@ func eraseNonDeterministicZipOutput(out string) string {
698
re = regexp.MustCompile(`(?m)^\[node \d+\] \d+ execution traces found$`)
699
out = re.ReplaceAllString(out, `[node ?] ? execution traces found`)
700
701
+ // Remove license-related NOTICE messages that may appear intermittently.
702
+ re = regexp.MustCompile(`(?m)^NOTICE: No license is installed.*\n?`)
703
+ out = re.ReplaceAllString(out, ``)
704
+
705
return out
706
}
707
0 commit comments