summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-06-09 14:31:53 -0400
committerChris Evich <cevich@redhat.com>2022-06-09 14:31:53 -0400
commit80d5a00bb49e36cc9b33f81fca40257bfe0259a0 (patch)
treeea44333be86bdceb2dd0c2f7a508f73d000a9702 /test
parentb4c981893de2e2c5b0b6163961d6699098f5c1ae (diff)
downloadpodman-80d5a00bb49e36cc9b33f81fca40257bfe0259a0.tar.gz
podman-80d5a00bb49e36cc9b33f81fca40257bfe0259a0.tar.bz2
podman-80d5a00bb49e36cc9b33f81fca40257bfe0259a0.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>
Diffstat (limited to 'test')
-rw-r--r--test/e2e/build_test.go2
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())