(self, httpbin)
| 1736 | assert "foo" not in r.request.headers |
| 1737 | |
| 1738 | def test_params_are_merged_case_sensitive(self, httpbin): |
| 1739 | s = requests.Session() |
| 1740 | s.params["foo"] = "bar" |
| 1741 | r = s.get(httpbin("get"), params={"FOO": "bar"}) |
| 1742 | assert r.json()["args"] == {"foo": "bar", "FOO": "bar"} |
| 1743 | |
| 1744 | def test_long_authinfo_in_url(self): |
| 1745 | url = "http://{}:{}@{}:9000/path?query#frag".format( |