aboutsummaryrefslogtreecommitdiff
path: root/tests/test_helpers
diff options
context:
space:
mode:
authorSebastian Lackner2019-01-15 19:40:53 +0100
committerrfjakob2019-01-15 22:08:20 +0100
commit1d2ce9c213093c91b86ba6c28537ccda4469fe1f (patch)
tree59f8203401b7730ed6c0fbe6011667a5422357f3 /tests/test_helpers
parent8a520ee77f4701eb8b94e917d91c22e5398dc11a (diff)
tests: Increase timeout in Mount() function.
This avoids sporadic test failures on macOS.
Diffstat (limited to 'tests/test_helpers')
-rw-r--r--tests/test_helpers/mount_unmount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_helpers/mount_unmount.go b/tests/test_helpers/mount_unmount.go
index 20b1143..5e5b6f3 100644
--- a/tests/test_helpers/mount_unmount.go
+++ b/tests/test_helpers/mount_unmount.go
@@ -83,7 +83,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error {
return err
case <-chanUsr1:
// noop
- case <-time.After(1 * time.Second):
+ case <-time.After(2 * time.Second):
log.Panicf("Timeout waiting for process %d", pid)
}