summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-20 06:15:36 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-20 06:15:36 (GMT)
commitb740f6a0c77e35b38cddc025dfc9023ded4b383a (patch)
treecb12fc577fc44fb9c81df1d2d02031653bfd31d6 /Lib/test
parentd995e1150cab57ed7c885d4b7dd943495022936b (diff)
downloadcpython-b740f6a0c77e35b38cddc025dfc9023ded4b383a.zip
cpython-b740f6a0c77e35b38cddc025dfc9023ded4b383a.tar.gz
cpython-b740f6a0c77e35b38cddc025dfc9023ded4b383a.tar.bz2
Activate two more test cases in test_httpservers.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_httpservers.py6
1 files changed, 3 insertions, 3 deletions
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 "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)