From d7c88aaf0170e1b49cce2223fd7011cfc0be189b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Aug 2023 07:52:00 +0530 Subject: [PATCH] Increase wait time for restore 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 236a90541f..383af79ac2 100644 --- a/src/calibre/db/tests/writing.py +++ b/src/calibre/db/tests/writing.py @@ -411,7 +411,7 @@ class WritingTest(BaseTest): from calibre.db.restore import Restore restorer = Restore(cl) restorer.start() - restorer.join(16) + restorer.join(60) af(restorer.is_alive()) cache = self.init_cache(cl) ae(before, {f:cache.all_field_for(f, book_ids) for f in tested_fields})