See: https://github.com/psf/requests/issues/2316
(self, httpbin)
| 2571 | pass |
| 2572 | |
| 2573 | def test_encoded_methods(self, httpbin): |
| 2574 | """See: https://github.com/psf/requests/issues/2316""" |
| 2575 | r = requests.request(b"GET", httpbin("get")) |
| 2576 | assert r.ok |
| 2577 | |
| 2578 | |
| 2579 | SendCall = collections.namedtuple("SendCall", ("args", "kwargs")) |