mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #23630: Fix test_asyncio on Windows
The proactor event loop requires also to mock loop._stop_serving.
This commit is contained in:
parent
72e1eae7bb
commit
582b17c2c5
1 changed files with 1 additions and 0 deletions
|
@ -764,6 +764,7 @@ class EventLoopTestsMixin:
|
|||
for host in hosts]
|
||||
self.loop.getaddrinfo = getaddrinfo_task
|
||||
self.loop._start_serving = mock.Mock()
|
||||
self.loop._stop_serving = mock.Mock()
|
||||
f = self.loop.create_server(lambda: MyProto(self.loop), hosts, 80)
|
||||
server = self.loop.run_until_complete(f)
|
||||
self.addCleanup(server.close)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue