diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-15 15:45:07 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-16 13:55:49 +0000 |
commit | 05fb5a0aa70911fdb359cb0116f158c271d2d0ca (patch) | |
tree | ce9de9dc007a159cbc9e6169200aac888737f505 /test/e2e | |
parent | 540a441234a483f65f9c6d3ad16b557e7ca6f111 (diff) | |
download | podman-05fb5a0aa70911fdb359cb0116f158c271d2d0ca.tar.gz podman-05fb5a0aa70911fdb359cb0116f158c271d2d0ca.tar.bz2 podman-05fb5a0aa70911fdb359cb0116f158c271d2d0ca.zip |
Fix nit in restart E2E tests
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #503
Approved by: rhatdan
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/restart_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/restart_test.go b/test/e2e/restart_test.go index 2ed48afaf..683952d45 100644 --- a/test/e2e/restart_test.go +++ b/test/e2e/restart_test.go @@ -62,7 +62,7 @@ var _ = Describe("Podman restart", func() { ok := WaitForContainer(&podmanTest) Expect(ok).To(BeTrue()) - session := podmanTest.Podman([]string{"restart", "test1"}) + session := podmanTest.Podman([]string{"restart", "--latest"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) }) |