diff options
author | Chris Evich <cevich@redhat.com> | 2019-02-04 11:17:41 -0500 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-02-04 11:17:41 -0500 |
commit | b7d052ee5edd397a29f933345bd051818ce92942 (patch) | |
tree | ac272cfcc4cb1f54dc78e6100ab27063e0b8e33c /test/e2e | |
parent | d5593b8e718a1ca86380faa072c654f791b18bbc (diff) | |
download | podman-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/e2e')
-rw-r--r-- | test/e2e/info_test.go | 2 |
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)) }) |