Skip to content

Commit 27418f5

Browse files
committed
more MacOS timing problems
1 parent 7f532cd commit 27418f5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/aiotest/test_timer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ def world(loop):
3737
result.append("World")
3838
loop.stop()
3939

40-
loop.call_later(0.001, hello)
41-
loop.call_later(0.050, world, loop)
40+
loop.call_later(0.1, hello)
41+
loop.call_later(0.5, world, loop)
4242

43-
await trio.sleep(0.030)
43+
await trio.sleep(0.3)
4444
assert result == ["Hello"]
4545

4646
await loop.wait_stopped()

0 commit comments

Comments
 (0)