diff options
author | Sebastian Lackner | 2019-01-15 19:40:53 +0100 |
---|---|---|
committer | rfjakob | 2019-01-15 22:08:20 +0100 |
commit | 1d2ce9c213093c91b86ba6c28537ccda4469fe1f (patch) | |
tree | 59f8203401b7730ed6c0fbe6011667a5422357f3 /tests | |
parent | 8a520ee77f4701eb8b94e917d91c22e5398dc11a (diff) |
tests: Increase timeout in Mount() function.
This avoids sporadic test failures on macOS.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_helpers/mount_unmount.go | 2 |
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) } |