summaryrefslogtreecommitdiff
path: root/Lib/test/test_httpservers.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-06-16 23:16:31 -0700
committerBenjamin Peterson <benjamin@python.org>2014-06-16 23:16:31 -0700
commit9db281662ded4e855cd8fbdfb8061efbbce282e3 (patch)
treedb5393c62f0bc43134dfc6af0b72e96dafc6a5ee /Lib/test/test_httpservers.py
parent068f81e11528b367f56bc3922554fa2dd00a7071 (diff)
parent0fd3972a3f8f9fcb9cecd30a608eea02d6b3b18e (diff)
downloadcpython-git-9db281662ded4e855cd8fbdfb8061efbbce282e3.tar.gz
merge 3.3
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r--Lib/test/test_httpservers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index f30ad67504..493fade985 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -487,7 +487,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
def test_urlquote_decoding_in_cgi_check(self):
res = self.request('/cgi-bin%2ffile1.py')
- self.assertEqual((b'Hello World\n', 'text/html', 200),
+ self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
(res.read(), res.getheader('Content-type'), res.status))