diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 16:33:14 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 16:33:14 (GMT) |
commit | 7f78ddc3adf77adf1e8a72788ca8306fe3abd782 (patch) | |
tree | 1cf71f572ac17d512638eeaaa9146232f6be5cbd /Lib/test | |
parent | 15cb48923449bdd1325a7736a5f9bb73c8529cec (diff) | |
download | cpython-7f78ddc3adf77adf1e8a72788ca8306fe3abd782.zip cpython-7f78ddc3adf77adf1e8a72788ca8306fe3abd782.tar.gz cpython-7f78ddc3adf77adf1e8a72788ca8306fe3abd782.tar.bz2 |
#11112: Fix typo in a base class in test_socket.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index c022fb5..f28a483 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1722,7 +1722,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): |