asyncio: Fix test_sleep_cancel(): call_later() mock has no self parameter

This commit is contained in:
Victor Stinner 2014-07-01 12:38:51 +02:00
parent 293f3f526d
commit 1690ed397a
1 changed files with 2 additions and 2 deletions

View File

@ -993,9 +993,9 @@ class TaskTests(test_utils.TestCase):
handle = None
orig_call_later = loop.call_later
def call_later(self, delay, callback, *args):
def call_later(delay, callback, *args):
nonlocal handle
handle = orig_call_later(self, delay, callback, *args)
handle = orig_call_later(delay, callback, *args)
return handle
loop.call_later = call_later