Skip to content

Commit

Permalink
bpo-46198: Fix test_asyncio.test_sslproto (GH-31801)
Browse files Browse the repository at this point in the history
GH-30297 removed a duplicate `from test import support` statement from `test_asyncio.test_sslproto`. However, in between that PR being filed and it being merged, GH-31275 removed the _other_ `from test import support` statement. This means that `support` is now undefined in `test_asyncio.test_sslproto`, causing the CI to fail on all platforms for all PRS.
  • Loading branch information
AlexWaygood committed Mar 10, 2022
1 parent 434ffb7 commit 4052dd2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Lib/test/test_asyncio/test_sslproto.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import socket
import unittest
import weakref
from test import support
from unittest import mock
try:
import ssl
Expand Down

0 comments on commit 4052dd2

Please sign in to comment.