summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_lowlevel.py4
-rwxr-xr-xtests/test_requests.py4
-rw-r--r--tests/test_utils.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_lowlevel.py b/tests/test_lowlevel.py
index 301dc3e4..c87234bc 100755
--- a/tests/test_lowlevel.py
+++ b/tests/test_lowlevel.py
@@ -28,7 +28,7 @@ def test_digestauth_401_count_reset_on_redirect():
"""Ensure we correctly reset num_401_calls after a successful digest auth,
followed by a 302 redirect to another digest auth prompt.
- See https://github.com/kennethreitz/requests/issues/1979.
+ See https://github.com/requests/requests/issues/1979.
"""
text_401 = (b'HTTP/1.1 401 UNAUTHORIZED\r\n'
b'Content-Length: 0\r\n'
@@ -138,7 +138,7 @@ def test_digestauth_401_only_sent_once():
def test_digestauth_only_on_4xx():
"""Ensure we only send digestauth on 4xx challenges.
- See https://github.com/kennethreitz/requests/issues/3772.
+ See https://github.com/requests/requests/issues/3772.
"""
text_200_chal = (b'HTTP/1.1 200 OK\r\n'
b'Content-Length: 0\r\n'
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
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 0b37e57f..41858b37 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -367,7 +367,7 @@ def test_get_auth_from_url(url, auth):
),
))
def test_requote_uri_with_unquoted_percents(uri, expected):
- """See: https://github.com/kennethreitz/requests/issues/2356"""
+ """See: https://github.com/requests/requests/issues/2356"""
assert requote_uri(uri) == expected