summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2019-02-04 11:17:41 -0500
committerChris Evich <cevich@redhat.com>2019-02-04 11:17:41 -0500
commitb7d052ee5edd397a29f933345bd051818ce92942 (patch)
treeac272cfcc4cb1f54dc78e6100ab27063e0b8e33c /test
parentd5593b8e718a1ca86380faa072c654f791b18bbc (diff)
downloadpodman-b7d052ee5edd397a29f933345bd051818ce92942.tar.gz
podman-b7d052ee5edd397a29f933345bd051818ce92942.tar.bz2
podman-b7d052ee5edd397a29f933345bd051818ce92942.zip
Increase e2e info/json test exit timeout
For whatever reason, this specific test frequently fails on Ubuntu with an error similar to: ``` Timed out after 1.000s. Expected process to exit. It did not. /var/tmp/go/src/github.com/containers/libpod/test/e2e/info_test.go:38 ``` Ths changes alters the test behavior to use the `defaultWaitTimeout` value (so 90 vs former 60 seconds) only for this test. Signed-off-by: Chris Evich <cevich@redhat.com>
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 2022dff1b..637c04e0a 100644
--- a/test/e2e/info_test.go
+++ b/test/e2e/info_test.go
@@ -35,7 +35,7 @@ var _ = Describe("Podman Info", func() {
It("podman info json output", func() {
session := podmanTest.Podman([]string{"info", "--format=json"})
- session.Wait()
+ session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
})