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

@ -269,7 +269,7 @@ class IsActiveTestCase(TestCase):
# the is_active flag is saved
self.assertFalse(user_fetched.is_active)
@override_settings(AUTH_USER_MODEL='auth.IsActiveTestUser1')
@override_settings(AUTH_USER_MODEL='auth_tests.IsActiveTestUser1')
def test_is_active_field_default(self):
"""
tests that the default value for is_active is provided