diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 18:33:14 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-18 18:33:14 +0200 |
commit | 169ed5946ad3fae10a1b1f703e6b354c4c611138 (patch) | |
tree | 9efb119cc555f2fe049a0ca9504d68254f009c07 /Lib/test/test_socket.py | |
parent | 00dc60beee3bf4b68fd658716616f25503a3a9eb (diff) | |
download | cpython-git-169ed5946ad3fae10a1b1f703e6b354c4c611138.tar.gz |
#11112: Fix typo in a base class in test_socket.
Diffstat (limited to 'Lib/test/test_socket.py')
-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 b094ce9586..8189bff7b3 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): |