diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-07-11 13:32:42 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-07-31 17:28:42 -0400 |
commit | 6619c073bda15ff828a49637b7330d01b7380e83 (patch) | |
tree | 3aace3938e19a0e1a68f296dafe3924d9dc41322 | |
parent | 7dd1df43231ba53e7d334c5272f93336a1ac32a5 (diff) | |
download | podman-6619c073bda15ff828a49637b7330d01b7380e83.tar.gz podman-6619c073bda15ff828a49637b7330d01b7380e83.tar.bz2 podman-6619c073bda15ff828a49637b7330d01b7380e83.zip |
Fix test suite
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
-rw-r--r-- | test/e2e/run_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 7b5ff2547..f66d1d2fa 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -789,9 +789,10 @@ USER mail` match, _ := session.GrepString("1.2.3.4") Expect(match).Should(BeTrue()) - session = podmanTest.Podman([]string{"run", "--rm", "--http-proxy=false", ALPINE, "printenv", "http_proxy"}) + session = podmanTest.Podman([]string{"run", "--http-proxy=false", ALPINE, "printenv", "http_proxy"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(1)) + Expect(session.OutputToString()).To(Equal("")) os.Unsetenv("http_proxy") }) |