diff --git a/integration_tests/internal/main.go b/integration_tests/internal/main.go index 25cf3c0c0..4b98a7d97 100644 --- a/integration_tests/internal/main.go +++ b/integration_tests/internal/main.go @@ -39,7 +39,7 @@ func main() { func getEnvOrDie(name string) string { val, ok := os.LookupEnv(name) if !ok { - fmt.Fprintf(os.Stderr, name+" could not be found in environment") + fmt.Fprintln(os.Stderr, name, "could not be found in environment") os.Exit(1) } return val