summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_proactor_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-09 01:25:52 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-02-09 01:25:52 +0100
commitf75267790209d3307be4932223ba488d51f4aefa (patch)
treec9350af191ea45fad8cd39d290f5e2a26374fbed /Lib/test/test_asyncio/test_proactor_events.py
parent771fc8b6d0540f86faa53843f36d659588700825 (diff)
downloadcpython-f75267790209d3307be4932223ba488d51f4aefa.tar.gz
asyncio tests: Remove scories of resolution/granularity
Diffstat (limited to 'Lib/test/test_asyncio/test_proactor_events.py')
-rw-r--r--Lib/test/test_asyncio/test_proactor_events.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_proactor_events.py b/Lib/test/test_asyncio/test_proactor_events.py
index 98abe69653..9964f425d2 100644
--- a/Lib/test/test_asyncio/test_proactor_events.py
+++ b/Lib/test/test_asyncio/test_proactor_events.py
@@ -17,7 +17,6 @@ class ProactorSocketTransportTests(unittest.TestCase):
def setUp(self):
self.loop = test_utils.TestLoop()
self.proactor = unittest.mock.Mock()
- self.proactor.resolution = 1e-3
self.loop._proactor = self.proactor
self.protocol = test_utils.make_test_protocol(asyncio.Protocol)
self.sock = unittest.mock.Mock(socket.socket)
@@ -343,7 +342,6 @@ class BaseProactorEventLoopTests(unittest.TestCase):
def setUp(self):
self.sock = unittest.mock.Mock(socket.socket)
self.proactor = unittest.mock.Mock()
- self.proactor.resolution = 1e-3
self.ssock, self.csock = unittest.mock.Mock(), unittest.mock.Mock()