Fix asyncio tests: define resolution
This commit is contained in:
parent
6b0fa70547
commit
75a5ec88ff
|
@ -144,6 +144,10 @@ class TestSelector(selectors.BaseSelector):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.keys = {}
|
self.keys = {}
|
||||||
|
|
||||||
|
@property
|
||||||
|
def resolution(self):
|
||||||
|
return 1e-3
|
||||||
|
|
||||||
def register(self, fileobj, events, data=None):
|
def register(self, fileobj, events, data=None):
|
||||||
key = selectors.SelectorKey(fileobj, 0, events, data)
|
key = selectors.SelectorKey(fileobj, 0, events, data)
|
||||||
self.keys[fileobj] = key
|
self.keys[fileobj] = key
|
||||||
|
|
Loading…
Reference in New Issue