Message229576
If Python itself works correctly on a machine, it is a bug for a test to say that is it not, by failing. Should we change
- response = self.request('/', method='get')
to
+ response = self.request('/', method='gets')
or
+ response = self.request('/', method='custom')
or conditionally, on type(status), change the test from assertEqual to (after substitutions) assertIn(response.status, (200,501))? David, do you have a preference? or should I flip a coin? |
|
Date |
User |
Action |
Args |
2014-10-17 16:04:57 | terry.reedy | set | recipients:
+ terry.reedy, orsenthil, fwierzbicki, ezio.melotti, r.david.murray, Claudiu.Popa, python-dev, jeff.allen |
2014-10-17 16:04:57 | terry.reedy | set | messageid: <1413561897.19.0.127480595945.issue20155@psf.upfronthosting.co.za> |
2014-10-17 16:04:57 | terry.reedy | link | issue20155 messages |
2014-10-17 16:04:57 | terry.reedy | create | |
|