summaryrefslogtreecommitdiff
path: root/test/e2e/pod_infra_container_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-10-17 15:21:56 +0200
committerGitHub <noreply@github.com>2019-10-17 15:21:56 +0200
commitd7cbcfadd07e9c79831e51de294b307b00292d49 (patch)
tree3beb54ca1575600d2d47d1b0aa552513fee40cb6 /test/e2e/pod_infra_container_test.go
parent392846c23a83888be4be817dcb872794090d298d (diff)
parent60d0be17fc55404929ad24d861f318968997458f (diff)
downloadpodman-d7cbcfadd07e9c79831e51de294b307b00292d49.tar.gz
podman-d7cbcfadd07e9c79831e51de294b307b00292d49.tar.bz2
podman-d7cbcfadd07e9c79831e51de294b307b00292d49.zip
Merge pull request #4199 from jwhonce/wip/exit_with_error
Refactor tests when checking for error exit codes
Diffstat (limited to 'test/e2e/pod_infra_container_test.go')
-rw-r--r--test/e2e/pod_infra_container_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/e2e/pod_infra_container_test.go b/test/e2e/pod_infra_container_test.go
index 3897aa851..c8072f308 100644
--- a/test/e2e/pod_infra_container_test.go
+++ b/test/e2e/pod_infra_container_test.go
@@ -122,7 +122,7 @@ var _ = Describe("Podman pod create", func() {
session = podmanTest.Podman([]string{"run", fedoraMinimal, "curl", "localhost"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Not(Equal(0)))
+ Expect(session).To(ExitWithError())
})
It("podman pod correctly sets up IPCNS", func() {
@@ -218,7 +218,7 @@ var _ = Describe("Podman pod create", func() {
session = podmanTest.Podman([]string{"run", "--pod", podID, "--network", "bridge", nginx, "curl", "localhost"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Not(Equal(0)))
+ Expect(session).To(ExitWithError())
})
It("podman pod container can override pod pid NS", func() {
@@ -309,7 +309,7 @@ var _ = Describe("Podman pod create", func() {
session = podmanTest.Podman([]string{"rm", infraID})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Not(Equal(0)))
+ Expect(session).To(ExitWithError())
session = podmanTest.Podman([]string{"pod", "rm", podID})
session.WaitWithDefaultTimeout()