diff options
| author | Tim Graham <timograham@gmail.com> | 2015-10-26 18:43:42 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-27 08:19:45 -0400 |
| commit | 590b8c1c57217bd8bd33998bae490dbe3d09f045 (patch) | |
| tree | 721c1673bcd9c6535685cf9e142bd495db7ccb43 /tests/auth_tests/test_models.py | |
| parent | 5acf203db2e9562dbe4073bf85d5043ef3121ea9 (diff) | |
Removed unnecessary app_label='auth' on auth_tests models.
This is a relic of when the tests were stored in contrib.auth.tests.
Diffstat (limited to 'tests/auth_tests/test_models.py')
| -rw-r--r-- | tests/auth_tests/test_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_models.py b/tests/auth_tests/test_models.py index dd42e3b879..6256f484da 100644 --- a/tests/auth_tests/test_models.py +++ b/tests/auth_tests/test_models.py @@ -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 |
