Skip to content

Commit 94afe3e

Browse files
Update Lib/test/test_asyncio/test_selector_events.py
1 parent 317923d commit 94afe3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_asyncio/test_selector_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def mock_sock_accept():
371371
# mock accept(2) returning -ECONNABORTED every-other
372372
# time that it's called. This applies most to OpenBSD
373373
# whose sockets generate this errno more reproducibly than
374-
# Linux and other OSs.
374+
# Linux and other OS.
375375
if sock.accept.call_count % 2 == 0:
376376
raise ConnectionAbortedError
377377
return (mock.Mock(), mock.Mock())

0 commit comments

Comments
 (0)