]> granicus.if.org Git - python/commitdiff
Activate two more test cases in test_httpservers.
authorGeorg Brandl <georg@python.org>
Tue, 20 May 2008 06:15:36 +0000 (06:15 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 20 May 2008 06:15:36 +0000 (06:15 +0000)
Lib/test/test_httpservers.py

index df48bd4629f0d3752c0090285d40835f75f69574..9cb11a6e70fa87cd30db1425ac73bc72e37cf941 100644 (file)
@@ -277,7 +277,7 @@ print "Content-type: text/html"
 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 @@ def test_main(verbose=None):
     try:
         cwd = os.getcwd()
         test_support.run_unittest(BaseHTTPServerTestCase,
-                                  #SimpleHTTPServerTestCase,
-                                  #CGIHTTPServerTestCase
+                                  SimpleHTTPServerTestCase,
+                                  CGIHTTPServerTestCase
                                   )
     finally:
         os.chdir(cwd)