summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-03-14 10:10:50 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-03-14 10:10:50 -0400
commit3c4f4bf5616464e85f3e7ec9cbdec5ad2d547503 (patch)
tree7f45bf09a163feb610cdcc55e7efcfd01d149fb2 /test
parent7426d4fbbeaf5ebd3d55576add89b99cd3f3f760 (diff)
downloadpodman-3c4f4bf5616464e85f3e7ec9cbdec5ad2d547503.tar.gz
podman-3c4f4bf5616464e85f3e7ec9cbdec5ad2d547503.tar.bz2
podman-3c4f4bf5616464e85f3e7ec9cbdec5ad2d547503.zip
Bump timeout on a podman info test to default
Saw this flake a few times because of a timeout issue. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/info_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/info_test.go b/test/e2e/info_test.go
index 046297bc0..c960fb311 100644
--- a/test/e2e/info_test.go
+++ b/test/e2e/info_test.go
@@ -41,7 +41,7 @@ var _ = Describe("Podman Info", func() {
})
It("podman system info json output", func() {
session := podmanTest.Podman([]string{"system", "info", "--format=json"})
- session.Wait()
+ session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
})