diff options
-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 683952d45..b624f9c8f 100644 --- a/test/e2e/restart_test.go +++ b/test/e2e/restart_test.go @@ -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"}) |