Merge with 3.4

This commit is contained in:
Terry Jan Reedy 2014-10-18 17:10:32 -04:00
commit 36d99dcf2b
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ class SimpleHTTPServerTestCase(BaseTestCase):
response = self.request('/', method='FOO')
self.check_status_and_reason(response, 501)
# requests must be case sensitive,so this should fail too
response = self.request('/', method='get')
response = self.request('/', method='custom')
self.check_status_and_reason(response, 501)
response = self.request('/', method='GETs')
self.check_status_and_reason(response, 501)