[Python-checkins] cpython (2.7): #11112: Fix typo in a base class in test_socket.

ezio.melotti python-checkins at python.org
Fri Nov 18 17:36:05 CET 2011


http://hg.python.org/cpython/rev/0fdf7f7c353d
changeset:   73611:0fdf7f7c353d
branch:      2.7
parent:      73608:91163aa3d5b4
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Nov 18 18:33:14 2011 +0200
summary:
  #11112: Fix typo in a base class in test_socket.

files:
  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
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -1379,7 +1379,7 @@
             # 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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list