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 e73a3bd commit d3e1febCopy full SHA for d3e1feb
tests/test_util.go
@@ -70,7 +70,7 @@ func longOrSkip(t *testing.T) {
70
// getEnterpriseImageOrSkip returns the docker image used for enterprise
71
// tests. If empty, enterprise tests are skipped.
72
func getEnterpriseImageOrSkip(t *testing.T) string {
73
- image := os.Getenv("ENTERPRISEIMAGE")
+ image := strings.TrimSpace(os.Getenv("ENTERPRISEIMAGE"))
74
if image == "" {
75
t.Skip("Skipping test because ENTERPRISEIMAGE is not set")
76
}
0 commit comments