diff options
author | Matthew Heon <mheon@redhat.com> | 2018-03-15 16:21:12 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-16 13:55:49 +0000 |
commit | 358f84ad39048729454f343c3bf0987188d7b167 (patch) | |
tree | 406ef6a4d71f26baab7b8b7c601d3503e3d99ebc /test/e2e | |
parent | 5c20bc4963b85f0a5856fbae35fe8bf87328be26 (diff) | |
download | podman-358f84ad39048729454f343c3bf0987188d7b167.tar.gz podman-358f84ad39048729454f343c3bf0987188d7b167.tar.bz2 podman-358f84ad39048729454f343c3bf0987188d7b167.zip |
Fix E2E tests
Signed-off-by: Matthew Heon <mheon@redhat.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 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"}) |