From c5250f1d803d2a1bb516dc36f3e816cc927db4ea Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Wed, 29 Apr 2026 21:43:48 +0200 Subject: [PATCH] Remove sleep that may have been making a test brittle --- tests/test_crawler_subprocess.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_crawler_subprocess.py b/tests/test_crawler_subprocess.py index 4893537f8..b12132a82 100644 --- a/tests/test_crawler_subprocess.py +++ b/tests/test_crawler_subprocess.py @@ -231,7 +231,6 @@ class TestCrawlerProcessSubprocessBase(ScriptRunnerMixin): await async_sleep(0.01) p.kill(sig) p.expect_exact("dropping downloader requests") - await async_sleep(0.01) p.kill(sig) p.expect_exact("forcing unclean shutdown") p.wait() # type: ignore[no-untyped-call]