diff options
| author | Tim Graham <timograham@gmail.com> | 2016-04-28 10:09:57 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-28 10:15:23 -0400 |
| commit | 8a135cca4e663ec649d9ef7643ffc2a10e91c781 (patch) | |
| tree | 57a071328f708dd1267471e213aea3544f9c636b /tests/auth_tests/test_handlers.py | |
| parent | 472c54084b30b9b8483ef9f9c068362bc21894f8 (diff) | |
[1.9.x] Fixed #26554 -- Updated docs URLs to readthedocs.io
Backport of f945fb24a31737c6625205a8cd90eabdf1c33584 from master
Diffstat (limited to 'tests/auth_tests/test_handlers.py')
| -rw-r--r-- | tests/auth_tests/test_handlers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auth_tests/test_handlers.py b/tests/auth_tests/test_handlers.py index 6228607fae..22e7b14aa1 100644 --- a/tests/auth_tests/test_handlers.py +++ b/tests/auth_tests/test_handlers.py @@ -23,7 +23,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') @@ -44,7 +44,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 """ @@ -62,7 +62,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') |
