From: Ezio Melotti Date: Fri, 18 Nov 2011 16:33:14 +0000 (+0200) Subject: #11112: Fix typo in a base class in test_socket. X-Git-Tag: v2.7.3rc1~293 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=169ed5946ad3fae10a1b1f703e6b354c4c611138;p=thirdparty%2FPython%2Fcpython.git #11112: Fix typo in a base class in test_socket. --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b094ce958668..8189bff7b3b9 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1379,7 +1379,7 @@ class TCPTimeoutTest(SocketTCPTest): # no alarm can be pending. Safe to restore old handler. signal.signal(signal.SIGALRM, old_alarm) -class UDPTimeoutTest(SocketTCPTest): +class UDPTimeoutTest(SocketUDPTest): def testUDPTimeout(self): def raise_timeout(*args, **kwargs):