diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2017-05-29 13:17:57 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2017-05-29 13:17:57 -0400 |
| commit | 916d171f2bf01155f2c115159ec475e8d76a690b (patch) | |
| tree | fc8b6743e9181850910a3c692970cff616ebee90 /tests/test_requests.py | |
| parent | 3857431159b56707965f9abce581e6ab0694604b (diff) | |
| parent | 4ad46705834955b872da1257b1de4feb5a8a51b3 (diff) | |
| download | python-requests-2.16.0.tar.gz | |
Diffstat (limited to 'tests/test_requests.py')
| -rwxr-xr-x | tests/test_requests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_requests.py b/tests/test_requests.py index 3cb56c33..b8350cb7 100755 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -455,7 +455,7 @@ class TestRequests: @pytest.mark.parametrize('key', ('User-agent', 'user-agent')) def test_user_agent_transfers(self, httpbin, key): - heads = {key: 'Mozilla/5.0 (github.com/kennethreitz/requests)'} + heads = {key: 'Mozilla/5.0 (github.com/requests/requests)'} r = requests.get(httpbin('user-agent'), headers=heads) assert heads[key] in r.text @@ -2075,7 +2075,7 @@ class TestTimeout: pass def test_encoded_methods(self, httpbin): - """See: https://github.com/kennethreitz/requests/issues/2316""" + """See: https://github.com/requests/requests/issues/2316""" r = requests.request(b'GET', httpbin('get')) assert r.ok |
