Merge pull request #13934 from cevich/fix_debug

Fix e2e tests referencing generic env. var.
This commit is contained in:
OpenShift Merge Robot 2022-04-20 20:02:55 -04:00 committed by GitHub
commit 02ab86a68a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -849,7 +849,7 @@ func (p *PodmanTestIntegration) makeOptions(args []string, noEvents, noCache boo
}
var debug string
if _, ok := os.LookupEnv("DEBUG"); ok {
if _, ok := os.LookupEnv("E2E_DEBUG"); ok {
debug = "--log-level=debug --syslog=true "
}