()
| 926 | async with anyio.create_task_group() as tg: |
| 927 | |
| 928 | async def call() -> None: |
| 929 | with pytest.raises(ValidationError): |
| 930 | await session.send_request(types.ListToolsRequest(), types.EmptyResult) |
| 931 | |
| 932 | tg.start_soon(call) |
| 933 | request = await from_client.receive() |
no test coverage detected