Fix podman run --attach tests

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #608
Approved by: baude
This commit is contained in:
Matthew Heon
2018-04-12 14:58:11 -04:00
committed by Atomic Bot
parent 39b2295e3e
commit 8265294d78

View File

@ -310,7 +310,6 @@ var _ = Describe("Podman run", func() {
It("podman run with attach stdout does not print stderr", func() {
session := podmanTest.Podman([]string{"run", "--rm", "--attach", "stdout", ALPINE, "ls", "/doesnotexist"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
Expect(session.OutputToString()).To(Equal(""))
})