mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,
revised by R. David Murray.
This commit is contained in:
parent
f87f515057
commit
dd09efdd53
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue