Commit b740f6a0 authored by Georg Brandl's avatar Georg Brandl

Activate two more test cases in test_httpservers.

parent d995e115
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment