From: Georg Brandl Date: Tue, 20 May 2008 06:15:36 +0000 (+0000) Subject: Activate two more test cases in test_httpservers. X-Git-Tag: v2.6b1~324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b740f6a0c77e35b38cddc025dfc9023ded4b383a;p=python Activate two more test cases in test_httpservers. --- diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index df48bd4629..9cb11a6e70 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -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)