summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_auth_backends.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-10-26 18:43:42 -0400
committerTim Graham <timograham@gmail.com>2015-10-27 08:38:19 -0400
commit1c0f598764d71f5b21a37211a3875df0320d82c7 (patch)
treedec2230cc8e635fd3f139b6ea103aa41f312236e /tests/auth_tests/test_auth_backends.py
parent0b4d11e1751a4e2368f0e4faa121e10ff1f73167 (diff)
[1.9.x] Removed unnecessary app_label='auth' on auth_tests models.
This is a relic of when the tests were stored in contrib.auth.tests. Backport of 590b8c1c57217bd8bd33998bae490dbe3d09f045 from master
Diffstat (limited to 'tests/auth_tests/test_auth_backends.py')
-rw-r--r--tests/auth_tests/test_auth_backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_auth_backends.py b/tests/auth_tests/test_auth_backends.py
index d8b2f43153..6ded9f2eb8 100644
--- a/tests/auth_tests/test_auth_backends.py
+++ b/tests/auth_tests/test_auth_backends.py
@@ -250,7 +250,7 @@ class ExtensionUserModelBackendTest(BaseModelBackendTest, TestCase):
)
-@override_settings(AUTH_USER_MODEL='auth.CustomPermissionsUser')
+@override_settings(AUTH_USER_MODEL='auth_tests.CustomPermissionsUser')
class CustomPermissionsUserModelBackendTest(BaseModelBackendTest, TestCase):
"""
Tests for the ModelBackend using the CustomPermissionsUser model.