We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b22a7fb commit 22d1babCopy full SHA for 22d1bab
tests/test_primitives/test_reawaitable/test_reawaitable_concurrency.py
@@ -32,9 +32,7 @@ async def test_reawaitable_decorator() -> None:
32
"""Test the reawaitable decorator with concurrent awaits."""
33
34
async def test_coro() -> str: # noqa: WPS430
35
- await anyio.sleep(
36
- 1
37
- ) # Increased from 0.1 to reduce chance of random failures
+ await anyio.sleep(1)
38
return 'decorated'
39
40
decorated = reawaitable(test_coro)
0 commit comments