diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-17 15:21:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-17 15:21:56 +0200 |
commit | d7cbcfadd07e9c79831e51de294b307b00292d49 (patch) | |
tree | 3beb54ca1575600d2d47d1b0aa552513fee40cb6 /test/e2e/port_test.go | |
parent | 392846c23a83888be4be817dcb872794090d298d (diff) | |
parent | 60d0be17fc55404929ad24d861f318968997458f (diff) | |
download | podman-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/port_test.go')
-rw-r--r-- | test/e2e/port_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/port_test.go b/test/e2e/port_test.go index 53fc33a01..5bb86d558 100644 --- a/test/e2e/port_test.go +++ b/test/e2e/port_test.go @@ -39,13 +39,13 @@ var _ = Describe("Podman port", func() { It("podman port all and latest", func() { result := podmanTest.Podman([]string{"port", "-a", "-l"}) result.WaitWithDefaultTimeout() - Expect(result.ExitCode()).ToNot(Equal(0)) + Expect(result).To(ExitWithError()) }) It("podman port all and extra", func() { result := podmanTest.Podman([]string{"port", "-a", "foobar"}) result.WaitWithDefaultTimeout() - Expect(result.ExitCode()).ToNot(Equal(0)) + Expect(result).To(ExitWithError()) }) It("podman port -l nginx", func() { |