[Python-checkins] r63483 - python/trunk/Lib/test/test_httpservers.py

georg.brandl python-checkins at python.org
Tue May 20 08:15:36 CEST 2008


Author: georg.brandl
Date: Tue May 20 08:15:36 2008
New Revision: 63483

Log:
Activate two more test cases in test_httpservers.


Modified:
   python/trunk/Lib/test/test_httpservers.py

Modified: python/trunk/Lib/test/test_httpservers.py
==============================================================================
--- python/trunk/Lib/test/test_httpservers.py	(original)
+++ python/trunk/Lib/test/test_httpservers.py	Tue May 20 08:15:36 2008
@@ -277,7 +277,7 @@
 print
 
 form = cgi.FieldStorage()
-print "%%s, %%s, %%s" % (form.getfirst("spam"), form.getfirst("eggs"),\
+print "%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"),\
               form.getfirst("bacon"))
 """
 
@@ -341,8 +341,8 @@
     try:
         cwd = os.getcwd()
         test_support.run_unittest(BaseHTTPServerTestCase,
-                                  #SimpleHTTPServerTestCase,
-                                  #CGIHTTPServerTestCase
+                                  SimpleHTTPServerTestCase,
+                                  CGIHTTPServerTestCase
                                   )
     finally:
         os.chdir(cwd)


More information about the Python-checkins mailing list