diff options
author | jgallucci32 <john.gallucci.iv@gmail.com> | 2020-06-22 06:38:53 -0700 |
---|---|---|
committer | jgallucci32 <john.gallucci.iv@gmail.com> | 2020-06-22 06:38:53 -0700 |
commit | 173d08637411629a271ab162d917f6ccee438dae (patch) | |
tree | a5e2cbbe5e15adfe1b02f845e8d1f9e9dedbdaa2 /test/e2e | |
parent | 8926e1f03bc82d75a295a0784c2756ea37c9b031 (diff) | |
download | podman-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')
-rw-r--r-- | test/e2e/logs_test.go | 2 |
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)) |