summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 092e94f..8520401 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2,6 +2,7 @@
import unittest
from test import support
+from unittest.case import _ExpectedFailure
import errno
import io
@@ -241,7 +242,7 @@ class ThreadableTest:
raise TypeError("test_func must be a callable function")
try:
test_func()
- except unittest._ExpectedFailure:
+ except _ExpectedFailure:
# We deliberately ignore expected failures
pass
except BaseException as e: