diff options
author | Chris Evich <cevich@redhat.com> | 2022-04-20 13:59:18 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2022-04-20 14:02:08 -0400 |
commit | d865fcc5ec14bbfa3181fb5bf5b2187d1a044387 (patch) | |
tree | 1d606a782d1bc217db6b0f91db1c25bd61a66101 | |
parent | 6250667aa1c1057f77b1f5c19af2015006eb1af5 (diff) | |
download | podman-d865fcc5ec14bbfa3181fb5bf5b2187d1a044387.tar.gz podman-d865fcc5ec14bbfa3181fb5bf5b2187d1a044387.tar.bz2 podman-d865fcc5ec14bbfa3181fb5bf5b2187d1a044387.zip |
Fix e2e tests referencing generic env. var.
Use of `$DEBUG` is highly likely to clash. Fortunately this one is in
a very specific/special context, so a rename fix should be perfectly
adequate.
See also https://github.com/containers/automation/pull/96
and https://github.com/containers/podman/issues/13932
Signed-off-by: Chris Evich <cevich@redhat.com>
-rw-r--r-- | test/e2e/common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index 620494b34..9580230b5 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -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 " } |