diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-09-27 20:57:51 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-09-27 20:57:51 (GMT) |
commit | 3a54c3e3aa7148522ca1af7244b79f9bad57c59b (patch) | |
tree | f33600ebc497aba808e719cdd9d88f7ef7e223ad /Lib/distutils/tests/test_upload.py | |
parent | f7fee331042baa0180f89cd38903573bbd12106e (diff) | |
parent | 9ce69672f3a1fbd9f337737bf35ace1a1a592598 (diff) | |
download | cpython-3a54c3e3aa7148522ca1af7244b79f9bad57c59b.zip cpython-3a54c3e3aa7148522ca1af7244b79f9bad57c59b.tar.gz cpython-3a54c3e3aa7148522ca1af7244b79f9bad57c59b.tar.bz2 |
Merge: #10510: make distuitls upload/register use HTML standards compliant CRLF.
Diffstat (limited to 'Lib/distutils/tests/test_upload.py')
-rw-r--r-- | Lib/distutils/tests/test_upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_upload.py b/Lib/distutils/tests/test_upload.py index 0380f97..2401541 100644 --- a/Lib/distutils/tests/test_upload.py +++ b/Lib/distutils/tests/test_upload.py @@ -127,7 +127,7 @@ class uploadTestCase(PyPIRCCommandTestCase): # what did we send ? headers = dict(self.last_open.req.headers) - self.assertEqual(headers['Content-length'], '2087') + self.assertEqual(headers['Content-length'], '2163') content_type = headers['Content-type'] self.assertTrue(content_type.startswith('multipart/form-data')) self.assertEqual(self.last_open.req.get_method(), 'POST') |