summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-15 15:45:07 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-16 13:55:49 +0000
commit05fb5a0aa70911fdb359cb0116f158c271d2d0ca (patch)
treece9de9dc007a159cbc9e6169200aac888737f505 /test
parent540a441234a483f65f9c6d3ad16b557e7ca6f111 (diff)
downloadpodman-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')
-rw-r--r--test/e2e/restart_test.go2
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))
})