diff options
Diffstat (limited to 'tests')
| -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') |
