Skip to content

Commit 22d1bab

Browse files
proboscissobolevn
andauthored
Update tests/test_primitives/test_reawaitable/test_reawaitable_concurrency.py
Co-authored-by: sobolevn <mail@sobolevn.me>
1 parent b22a7fb commit 22d1bab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_primitives/test_reawaitable/test_reawaitable_concurrency.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ async def test_reawaitable_decorator() -> None:
3232
"""Test the reawaitable decorator with concurrent awaits."""
3333

3434
async def test_coro() -> str: # noqa: WPS430
35-
await anyio.sleep(
36-
1
37-
) # Increased from 0.1 to reduce chance of random failures
35+
await anyio.sleep(1)
3836
return 'decorated'
3937

4038
decorated = reawaitable(test_coro)

0 commit comments

Comments
 (0)