Skip to content

Commit 9b5cbcd

Browse files
committed
uasyncio.core: test_full_wait: Update for call_later_ms().
1 parent 4fa29d8 commit 9b5cbcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uasyncio.core/test_full_wait.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def wait(self, delay):
2424

2525

2626
loop = MockEventLoop()
27-
loop.call_later_ms_(500, lambda: loop.msgs.append("I should be run second, time: %s" % loop.time()))
27+
loop.call_later_ms(500, lambda: loop.msgs.append("I should be run second, time: %s" % loop.time()))
2828
try:
2929
loop.run_forever()
3030
except StopIteration:

0 commit comments

Comments
 (0)