Merge pull request #13934 from cevich/fix_debug
Fix e2e tests referencing generic env. var.
This commit is contained in:
commit
02ab86a68a
|
|
@ -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 "
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue