From 6e528c0967c147a7b94488f8d9349225d4a93f80 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Thu, 5 Oct 2023 14:49:32 +0300 Subject: [PATCH] Fix TestReadExternalChangesFuse pause to reduce flaps --- internal/goofys_fs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/goofys_fs_test.go b/internal/goofys_fs_test.go index b5390863..d5425b14 100644 --- a/internal/goofys_fs_test.go +++ b/internal/goofys_fs_test.go @@ -411,7 +411,7 @@ func (s *GoofysTest) TestReadExternalChangesFuse(t *C) { }) t.Assert(err, IsNil) - time.Sleep(s.fs.flags.StatCacheTTL+1) + time.Sleep(s.fs.flags.StatCacheTTL + 1*time.Second) buf, err = ioutil.ReadFile(filePath) t.Assert(err, IsNil)