diff options
author | Chris Evich <cevich@redhat.com> | 2022-06-09 14:31:53 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-06-14 16:12:10 -0400 |
commit | 3eee4585ef9068212fc4b34aa611d082601dc97c (patch) | |
tree | a855f3f048dcbbc41b7360c365689b64a70f73a9 | |
parent | c24d2efa97dfffafee80f066584edd7be9fd83fa (diff) | |
download | podman-3eee4585ef9068212fc4b34aa611d082601dc97c.tar.gz podman-3eee4585ef9068212fc4b34aa611d082601dc97c.tar.bz2 podman-3eee4585ef9068212fc4b34aa611d082601dc97c.zip |
Fix Remote filtering embedded directory test
Fixes #14184
Docs: https://onsi.github.io/gomega/#making-asynchronous-assertions
Signed-off-by: Chris Evich <cevich@redhat.com>
-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 f34501d55..c9cbae480 100644 --- a/test/e2e/build_test.go +++ b/test/e2e/build_test.go @@ -529,7 +529,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()) |