Activate two more test cases in test_httpservers.
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index df48bd4..9cb11a6 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -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)