File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -242,16 +242,12 @@ async def test_request_queue_not_had_multiple_clients_platform_resurrection(
242242 async def main () -> None :
243243 async with Actor :
244244 rq_1 = await Actor .open_request_queue ()
245- Actor .log .info (f'Used client key = { rq_1 ._client ._api_client .client_key } , request queue ID = { rq_1 .id } ' )
246- metadata = await rq_1 .get_metadata ()
247- Actor .log .info (metadata )
248-
249- assert metadata .had_multiple_clients is False , 'Not accessed yet, should be False'
245+ assert (await rq_1 .get_metadata ()).had_multiple_clients is False , 'Not accessed yet, should be False'
250246
251247 await rq_1 .fetch_next_request ()
252248
253249 assert (await rq_1 .get_metadata ()).had_multiple_clients is False , (
254- 'Accessed with same client, should be False'
250+ 'Accessed with the same client, should be False'
255251 )
256252
257253 actor = await make_actor (label = 'rq-multiple-clients-resurrection' , main_func = main )
You can’t perform that action at this time.
0 commit comments