summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgallucci32 <john.gallucci.iv@gmail.com>2020-06-22 06:38:53 -0700
committerMatthew Heon <mheon@redhat.com>2020-06-24 14:35:19 -0400
commit36d8b6979429d8f9c2e1cbdee104f6724978766d (patch)
tree8b2e84c73dbc1038de0d3f8e223563ead8914e27
parent03f952cfa89ac40e493a4ad666abeae1298c0cd7 (diff)
downloadpodman-36d8b6979429d8f9c2e1cbdee104f6724978766d.tar.gz
podman-36d8b6979429d8f9c2e1cbdee104f6724978766d.tar.bz2
podman-36d8b6979429d8f9c2e1cbdee104f6724978766d.zip
Add explicit command to alpine container in test case.
Signed-off-by: jgallucci32 <john.gallucci.iv@gmail.com>
-rw-r--r--test/e2e/logs_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/logs_test.go b/test/e2e/logs_test.go
index fc0739d3d..cf69cbd3e 100644
--- a/test/e2e/logs_test.go
+++ b/test/e2e/logs_test.go
@@ -315,7 +315,7 @@ var _ = Describe("Podman logs", func() {
It("follow output stopped container", func() {
containerName := "logs-f"
- logc := podmanTest.Podman([]string{"run", "--name", containerName, "-d", ALPINE})
+ logc := podmanTest.Podman([]string{"run", "--name", containerName, "-d", ALPINE, "true"})
logc.WaitWithDefaultTimeout()
Expect(logc).To(Exit(0))