summaryrefslogtreecommitdiff
path: root/tests/test_functional.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_functional.py')
-rw-r--r--tests/test_functional.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_functional.py b/tests/test_functional.py
index d8e60a4..f92faaf 100644
--- a/tests/test_functional.py
+++ b/tests/test_functional.py
@@ -1531,7 +1531,7 @@ if hasattr(socket, "AF_UNIX"):
# 'Broken pipe' error when the socket it closed.
try:
self.sock.send(to_send)
- except socket.error as exc:
+ except OSError as exc:
self.assertEqual(get_errno(exc), errno.EPIPE)
class UnixEchoTests(EchoTests, UnixTests, unittest.TestCase):
@@ -1602,7 +1602,7 @@ class ConnectionClosed(Exception):
def read_http(fp): # pragma: no cover
try:
response_line = fp.readline()
- except socket.error as exc:
+ except OSError as exc:
fp.close()
# errno 104 is ENOTRECOVERABLE, In WinSock 10054 is ECONNRESET
if get_errno(exc) in (errno.ECONNABORTED, errno.ECONNRESET, 104, 10054):