From 059eb6229cfafe90f24a53fb6f09a29efe63530a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 24 Jul 2023 11:31:53 +0530 Subject: [PATCH] Double timeout for flaky test --- src/calibre/db/tests/writing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/tests/writing.py b/src/calibre/db/tests/writing.py index 83f839534f..6247059a4b 100644 --- a/src/calibre/db/tests/writing.py +++ b/src/calibre/db/tests/writing.py @@ -405,7 +405,7 @@ class WritingTest(BaseTest): from calibre.db.restore import Restore restorer = Restore(cl) restorer.start() - restorer.join(8) + restorer.join(16) af(restorer.is_alive()) cache = self.init_cache(cl) ae(before, {f:cache.all_field_for(f, book_ids) for f in tested_fields})