summaryrefslogtreecommitdiff
path: root/test/e2e/logs_test.go
diff options
context:
space:
mode:
authorjgallucci32 <john.gallucci.iv@gmail.com>2020-06-22 06:38:53 -0700
committerjgallucci32 <john.gallucci.iv@gmail.com>2020-06-22 06:38:53 -0700
commit173d08637411629a271ab162d917f6ccee438dae (patch)
treea5e2cbbe5e15adfe1b02f845e8d1f9e9dedbdaa2 /test/e2e/logs_test.go
parent8926e1f03bc82d75a295a0784c2756ea37c9b031 (diff)
downloadpodman-173d08637411629a271ab162d917f6ccee438dae.tar.gz
podman-173d08637411629a271ab162d917f6ccee438dae.tar.bz2
podman-173d08637411629a271ab162d917f6ccee438dae.zip
Add explicit command to alpine container in test case.
Signed-off-by: jgallucci32 <john.gallucci.iv@gmail.com>
Diffstat (limited to 'test/e2e/logs_test.go')
-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))