Activate two more test cases in test_httpservers.

This commit is contained in:
Georg Brandl 2008-05-20 06:15:36 +00:00
parent d995e1150c
commit b740f6a0c7
1 changed files with 3 additions and 3 deletions

View 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)