From 986b83736c4e8530d5e4f4999c4714ef4b15f046 Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Mon, 29 Jun 2026 15:50:17 +0200 Subject: [PATCH] Update test expectations --- tests/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index d7b7a9ff2..869af4e77 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -331,9 +331,10 @@ class MySpider(scrapy.Spider): assert self.ASYNC_MSG in err assert ( "The installed reactor (twisted.internet.asyncioreactor.AsyncioSelectorReactor)" - " does not match the requested one" + f" does not match the one requested by spider {spider!r}" " (twisted.internet.selectreactor.SelectReactor)" ) in err + assert "FORCE_CRAWLER_PROCESS=True" in err def test_project_asyncio_spider_settings_select_forced( self, proj_path: Path