summaryrefslogtreecommitdiff
path: root/test/e2e/pod_top_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-10-10 12:22:35 -0500
committerbaude <bbaude@redhat.com>2018-10-23 08:26:21 -0500
commitee8f19e7be8626b17498a3c5602a7390a4d671e3 (patch)
treed9846560bf0723305600e9cf43749536c9befd14 /test/e2e/pod_top_test.go
parent5b2478ed87eedd8178c1672a786f95a6716a8edb (diff)
downloadpodman-ee8f19e7be8626b17498a3c5602a7390a4d671e3.tar.gz
podman-ee8f19e7be8626b17498a3c5602a7390a4d671e3.tar.bz2
podman-ee8f19e7be8626b17498a3c5602a7390a4d671e3.zip
Make podman ps fast
Like Ricky Bobby, we want to go fast. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/pod_top_test.go')
-rw-r--r--test/e2e/pod_top_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/pod_top_test.go b/test/e2e/pod_top_test.go
index 0ecc8e6e8..f72456307 100644
--- a/test/e2e/pod_top_test.go
+++ b/test/e2e/pod_top_test.go
@@ -109,7 +109,7 @@ var _ = Describe("Podman top", func() {
result := podmanTest.Podman([]string{"pod", "top", podid})
result.WaitWithDefaultTimeout()
Expect(result.ExitCode()).To(Equal(0))
- Expect(len(result.OutputToStringArray())).To(Equal(4))
+ Expect(len(result.OutputToStringArray())).To(Equal(3))
})
It("podman pod top on pod with containers in different namespace", func() {
@@ -127,6 +127,6 @@ var _ = Describe("Podman top", func() {
result := podmanTest.Podman([]string{"pod", "top", podid})
result.WaitWithDefaultTimeout()
Expect(result.ExitCode()).To(Equal(0))
- Expect(len(result.OutputToStringArray())).To(Equal(4))
+ Expect(len(result.OutputToStringArray())).To(Equal(3))
})
})