Skip to content

Commit 7652213

Browse files
committed
Complete refactor from call_socketpair() to socketpair()
1 parent fe5da2d commit 7652213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_socket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4866,7 +4866,7 @@ class PurePythonSocketPairTest(SocketPairTest):
48664866
# code path we're using regardless platform is the pure python one where
48674867
# `_socket.socketpair` does not exist. (AF_INET does not work with
48684868
# _socket.socketpair on many platforms).
4869-
def call_socketpair(self):
4869+
def socketpair(self):
48704870
# called by super().setUp().
48714871
try:
48724872
return socket.socketpair(socket.AF_INET6)

0 commit comments

Comments
 (0)