Removed unnecessary app_label='auth' on auth_tests models.

This is a relic of when the tests were stored in contrib.auth.tests.
This commit is contained in:
Tim Graham 2015-10-26 18:43:42 -04:00
parent 5acf203db2
commit 590b8c1c57
7 changed files with 9 additions and 30 deletions

View file

@ -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.