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.
2 parents 60d802b + c8a0836 commit 6cdbf24Copy full SHA for 6cdbf24
pkg/cli/zip_test.go
@@ -691,6 +691,10 @@ func eraseNonDeterministicZipOutput(out string) string {
691
re = regexp.MustCompile(`(?m)^\[node \d+\] \d+ execution traces found$`)
692
out = re.ReplaceAllString(out, `[node ?] ? execution traces found`)
693
694
+ // Remove license-related NOTICE messages that may appear intermittently.
695
+ re = regexp.MustCompile(`(?m)^NOTICE: No license is installed.*\n?`)
696
+ out = re.ReplaceAllString(out, ``)
697
+
698
return out
699
}
700
0 commit comments