()
| 1479 | state.num1 = 0 |
| 1480 | |
| 1481 | async def _coro(): |
| 1482 | async with state_manager.modify_state(token) as state: |
| 1483 | await asyncio.sleep(0.01) |
| 1484 | state.num1 += 1 |
| 1485 | |
| 1486 | tasks = [asyncio.create_task(_coro()) for _ in range(n_coroutines)] |
| 1487 |
no test coverage detected