From e70003737bc79a7e748552ff5e485706714d2e67 Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Fri, 20 Oct 2017 15:59:18 +0000 Subject: [PATCH] lib/fs: make watcher tests even more darwin slowness resistant GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4439 --- lib/fs/basicfs_watch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fs/basicfs_watch_test.go b/lib/fs/basicfs_watch_test.go index 2461dec88..1c23d8cbb 100644 --- a/lib/fs/basicfs_watch_test.go +++ b/lib/fs/basicfs_watch_test.go @@ -201,7 +201,7 @@ func testScenario(t *testing.T, name string, testCase func(), expectedEvents []E // they get flushed to disk with a delay. initDelayMs := 500 if runtime.GOOS == "darwin" { - initDelayMs = 900 + initDelayMs = 2000 } sleepMs(initDelayMs)