Skip to content

Commit ac6f8c8

Browse files
committed
Increase delay
1 parent 8790e49 commit ac6f8c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_asyncio/test_timeouts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def test_outer_task_is_not_cancelled(self):
136136
async def outer() -> None:
137137
with self.assertRaises(TimeoutError):
138138
async with asyncio.timeout(0.001):
139-
await asyncio.sleep(1)
139+
await asyncio.sleep(10)
140140

141141
task = asyncio.create_task(outer())
142142
await task

0 commit comments

Comments
 (0)