[Python-checkins] r43329 - python/trunk/Lib/test/test_socket.py

martin.v.loewis python-checkins at python.org
Sun Mar 26 18:40:47 CEST 2006


Author: martin.v.loewis
Date: Sun Mar 26 18:40:47 2006
New Revision: 43329

Modified:
   python/trunk/Lib/test/test_socket.py
Log:
Fix typo.


Modified: python/trunk/Lib/test/test_socket.py
==============================================================================
--- python/trunk/Lib/test/test_socket.py	(original)
+++ python/trunk/Lib/test/test_socket.py	Sun Mar 26 18:40:47 2006
@@ -270,7 +270,7 @@
         all_host_names = [hostname, hname] + aliases
         fqhn = socket.getfqdn()
         if not fqhn in all_host_names:
-            self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqdn, repr(all_host_names)))
+            self.fail("Error testing host resolution mechanisms. (fqdn: %s, all: %s)" % (fqhn, repr(all_host_names)))
 
     def testRefCountGetNameInfo(self):
         # Testing reference count for getnameinfo


More information about the Python-checkins mailing list