diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-10 14:58:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 14:58:34 -0700 |
commit | cec8edd6f5067ea8336fe9d386b78ed1e7161fd6 (patch) | |
tree | 93ec473460b4d7fd827c348540b834ace39ddea6 /test | |
parent | f39e097a815799bad704a8a1d8f16ee86f4c3602 (diff) | |
parent | 584c70a9f80c717663e880a352cd11df80fc21a6 (diff) | |
download | podman-cec8edd6f5067ea8336fe9d386b78ed1e7161fd6.tar.gz podman-cec8edd6f5067ea8336fe9d386b78ed1e7161fd6.tar.bz2 podman-cec8edd6f5067ea8336fe9d386b78ed1e7161fd6.zip |
Merge pull request #4181 from cevich/start_test_slower_poll
Raise start_test polling interval
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/start_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/start_test.go b/test/e2e/start_test.go index 06ab6aacd..13f14183b 100644 --- a/test/e2e/start_test.go +++ b/test/e2e/start_test.go @@ -110,7 +110,7 @@ var _ = Describe("Podman start", func() { start.WaitWithDefaultTimeout() Expect(start.ExitCode()).Should(BeNumerically(">", 0)) - Eventually(podmanTest.NumberOfContainers(), defaultWaitTimeout).Should(BeZero()) + Eventually(podmanTest.NumberOfContainers(), defaultWaitTimeout, 3.0).Should(BeZero()) }) It("podman failed to start without --rm should NOT delete the container", func() { @@ -122,7 +122,7 @@ var _ = Describe("Podman start", func() { start.WaitWithDefaultTimeout() Expect(start.ExitCode()).Should(BeNumerically(">", 0)) - Eventually(podmanTest.NumberOfContainers(), defaultWaitTimeout).Should(Equal(1)) + Eventually(podmanTest.NumberOfContainers(), defaultWaitTimeout, 3.0).Should(Equal(1)) }) It("podman start --sig-proxy should not work without --attach", func() { |