Fix E2E tests

Signed-off-by: Matthew Heon <mheon@redhat.com>

Closes: #503
Approved by: rhatdan
This commit is contained in:
Matthew Heon 2018-03-15 16:21:12 -04:00 committed by Atomic Bot
parent 5c20bc4963
commit 358f84ad39
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ var _ = Describe("Podman restart", func() {
_, exitCode, _ := podmanTest.RunLsContainer("test1")
Expect(exitCode).To(Equal(0))
_, exitCode, _ := podmanTest.RunLsContainer("test2")
_, exitCode, _ = podmanTest.RunLsContainer("test2")
Expect(exitCode).To(Equal(0))
session := podmanTest.Podman([]string{"restart", "test1", "test2"})