summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-28 10:09:57 -0400
committerTim Graham <timograham@gmail.com>2016-04-28 10:09:57 -0400
commitf945fb24a31737c6625205a8cd90eabdf1c33584 (patch)
treef37e44849c93569a87618f4946653772608d1039 /tests
parent0d8b523422fda71baa10807d5aebefd34bad7962 (diff)
Fixed #26554 -- Updated docs URLs to readthedocs.io
Diffstat (limited to 'tests')
-rw-r--r--tests/auth_tests/test_handlers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auth_tests/test_handlers.py b/tests/auth_tests/test_handlers.py
index 600d9bb834..0acf9377cb 100644
--- a/tests/auth_tests/test_handlers.py
+++ b/tests/auth_tests/test_handlers.py
@@ -25,7 +25,7 @@ class ModWsgiHandlerTestCase(TransactionTestCase):
def test_check_password(self):
"""
Verify that check_password returns the correct values as per
- https://modwsgi.readthedocs.org/en/develop/user-guides/access-control-mechanisms.html#apache-authentication-provider
+ https://modwsgi.readthedocs.io/en/develop/user-guides/access-control-mechanisms.html#apache-authentication-provider
"""
User.objects.create_user('test', 'test@example.com', 'test')
@@ -46,7 +46,7 @@ class ModWsgiHandlerTestCase(TransactionTestCase):
def test_check_password_custom_user(self):
"""
Verify that check_password returns the correct values as per
- https://modwsgi.readthedocs.org/en/develop/user-guides/access-control-mechanisms.html#apache-authentication-provider
+ https://modwsgi.readthedocs.io/en/develop/user-guides/access-control-mechanisms.html#apache-authentication-provider
with custom user installed
"""
@@ -64,7 +64,7 @@ class ModWsgiHandlerTestCase(TransactionTestCase):
def test_groups_for_user(self):
"""
Check that groups_for_user returns correct values as per
- https://modwsgi.readthedocs.org/en/develop/user-guides/access-control-mechanisms.html#apache-group-authorisation
+ https://modwsgi.readthedocs.io/en/develop/user-guides/access-control-mechanisms.html#apache-group-authorisation
"""
user1 = User.objects.create_user('test', 'test@example.com', 'test')
User.objects.create_user('test1', 'test1@example.com', 'test1')