From 3a95feec75a3016c1c484d1c6cda0b528eb91474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Wed, 7 May 2025 22:38:05 +0200 Subject: [PATCH] Blind test #1 for Windows-specific test failure --- tests/test_crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_crawler.py b/tests/test_crawler.py index 4c179c65b..0d54cbdb7 100644 --- a/tests/test_crawler.py +++ b/tests/test_crawler.py @@ -913,7 +913,7 @@ class TestCrawlerProcessSubprocess(ScriptRunnerMixin, unittest.TestCase): p.expect_exact("shutting down gracefully") # sending the second signal too fast often causes problems d = Deferred() - reactor.callLater(0.01, d.callback, None) + reactor.callLater(0.1, d.callback, None) yield d p.kill(sig) p.expect_exact("forcing unclean shutdown")