diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-06-09 15:51:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 15:51:16 -0400 |
commit | ec7951bc1443a62c7a3398ddd77c2b928a2f9544 (patch) | |
tree | cd03980b455eb2deff0477fa321b848a5bbf500d /test/e2e | |
parent | e7db6d4893fe4c583dc492f4870a16085f3c9f70 (diff) | |
parent | 80d5a00bb49e36cc9b33f81fca40257bfe0259a0 (diff) | |
download | podman-ec7951bc1443a62c7a3398ddd77c2b928a2f9544.tar.gz podman-ec7951bc1443a62c7a3398ddd77c2b928a2f9544.tar.bz2 podman-ec7951bc1443a62c7a3398ddd77c2b928a2f9544.zip |
Merge pull request #14553 from cevich/fix_eventually
Fix Remote filtering embedded directory test
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/build_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/build_test.go b/test/e2e/build_test.go index 0b766dcc8..9ecc2f8c6 100644 --- a/test/e2e/build_test.go +++ b/test/e2e/build_test.go @@ -555,7 +555,7 @@ subdir**` dd := exec.Command("dd", "if=/dev/random", "of="+randomFile, "bs=1G", "count=1") ddSession, err := Start(dd, GinkgoWriter, GinkgoWriter) Expect(err).ToNot(HaveOccurred()) - Eventually(ddSession).Should(Exit(0)) + Eventually(ddSession, "10s", "1s").Should(Exit(0)) // make cwd as context root path Expect(os.Chdir(contextDir)).ToNot(HaveOccurred()) |