diff options
author | Chris Evich <cevich@redhat.com> | 2022-06-09 14:31:53 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2022-06-09 14:31:53 -0400 |
commit | 80d5a00bb49e36cc9b33f81fca40257bfe0259a0 (patch) | |
tree | ea44333be86bdceb2dd0c2f7a508f73d000a9702 /test/e2e | |
parent | b4c981893de2e2c5b0b6163961d6699098f5c1ae (diff) | |
download | podman-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/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()) |