diff options
author | jgallucci32 <john.gallucci.iv@gmail.com> | 2020-06-22 06:38:53 -0700 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2020-06-24 14:35:19 -0400 |
commit | 36d8b6979429d8f9c2e1cbdee104f6724978766d (patch) | |
tree | 8b2e84c73dbc1038de0d3f8e223563ead8914e27 | |
parent | 03f952cfa89ac40e493a4ad666abeae1298c0cd7 (diff) | |
download | podman-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.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)) |