[Python-checkins] cpython (3.4): Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,

terry.reedy python-checkins at python.org
Sat Oct 18 23:11:05 CEST 2014


https://hg.python.org/cpython/rev/5c0f17063fb8
changeset:   93129:5c0f17063fb8
branch:      3.4
parent:      93126:7c183c782401
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sat Oct 18 17:10:09 2014 -0400
summary:
  Issue #20155: Fix non-buildbot test failure on Windows.  Patch by Claudiu Popa,
revised by R. David Murray.

files:
  Lib/test/test_httpservers.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -333,7 +333,7 @@
         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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list