summaryrefslogtreecommitdiff
path: root/tests/auth_tests
diff options
context:
space:
mode:
authorDavid Smith <39445562+smithdc1@users.noreply.github.com>2021-08-02 06:45:26 +0100
committerGitHub <noreply@github.com>2021-08-02 07:45:26 +0200
commit6802ac4415d6ebf9500df47dc22727a1d1b569d1 (patch)
treecff883610c10f19119c0db7ace2c2f02bd3a12e1 /tests/auth_tests
parent74a86e9b5eaf4f0d2bb5bf6b7948000c75cdd4a6 (diff)
downloaddjango-6802ac4415d6ebf9500df47dc22727a1d1b569d1.tar.gz
Refs #32956 -- Corrected usage of "insure" and "assure".
Diffstat (limited to 'tests/auth_tests')
-rw-r--r--tests/auth_tests/test_remote_user.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auth_tests/test_remote_user.py b/tests/auth_tests/test_remote_user.py
index ee1f2e1cdf..3756f557a2 100644
--- a/tests/auth_tests/test_remote_user.py
+++ b/tests/auth_tests/test_remote_user.py
@@ -33,10 +33,7 @@ class RemoteUserTest(TestCase):
self.patched_settings.disable()
def test_no_remote_user(self):
- """
- Tests requests where no remote user is specified and insures that no
- users get created.
- """
+ """Users are not created when remote user is not specified."""
num_users = User.objects.count()
response = self.client.get('/remote_user/')