Fix nit in restart E2E tests

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #503
Approved by: rhatdan
This commit is contained in:
Matthew Heon
2018-03-15 15:45:07 -04:00
committed by Atomic Bot
parent 540a441234
commit 05fb5a0aa7

View File

@ -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))
})