summaryrefslogtreecommitdiff
path: root/test/e2e/pod_ps_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-09 13:20:39 -0400
committerGitHub <noreply@github.com>2020-10-09 13:20:39 -0400
commitffabd57d6de01c5c65b2e2291b6a6564d28263a0 (patch)
tree044680b61b05ba97af55cdafb425dd2a8b6b47f7 /test/e2e/pod_ps_test.go
parent73488369586d387db0e4754fa56d5d0077a24940 (diff)
parentf128bff232a9d9ee14376af83e7f917d3c47ceb8 (diff)
downloadpodman-ffabd57d6de01c5c65b2e2291b6a6564d28263a0.tar.gz
podman-ffabd57d6de01c5c65b2e2291b6a6564d28263a0.tar.bz2
podman-ffabd57d6de01c5c65b2e2291b6a6564d28263a0.zip
Merge pull request #7975 from jwhonce/jira/run-898-4
Restore --format table...
Diffstat (limited to 'test/e2e/pod_ps_test.go')
-rw-r--r--test/e2e/pod_ps_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/e2e/pod_ps_test.go b/test/e2e/pod_ps_test.go
index 17ed6a9c0..a299d3cf2 100644
--- a/test/e2e/pod_ps_test.go
+++ b/test/e2e/pod_ps_test.go
@@ -8,6 +8,7 @@ import (
. "github.com/containers/podman/v2/test/utils"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
+ . "github.com/onsi/gomega/gexec"
)
var _ = Describe("Podman ps", func() {
@@ -63,7 +64,7 @@ var _ = Describe("Podman ps", func() {
result := podmanTest.Podman([]string{"pod", "ps", "-q"})
result.WaitWithDefaultTimeout()
- Expect(result.ExitCode()).To(Equal(0))
+ Expect(result).To(Exit(0))
Expect(len(result.OutputToStringArray())).Should(BeNumerically(">", 0))
Expect(podid).To(ContainSubstring(result.OutputToStringArray()[0]))
})