tests: Increase timeout in Mount() function.

This avoids sporadic test failures on macOS.
This commit is contained in:
Sebastian Lackner 2019-01-15 19:40:53 +01:00 committed by rfjakob
parent 8a520ee77f
commit 1d2ce9c213
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}