diff options
| author | Preston Holmes <preston@ptone.com> | 2013-02-08 00:28:37 -0800 |
|---|---|---|
| committer | Preston Holmes <preston@ptone.com> | 2013-02-08 00:28:37 -0800 |
| commit | 830b9fde460cedeb9a9a52e11a2d456d08c5198f (patch) | |
| tree | 7addfb8718b7cc6fc3cd829f47055e4e9f19c4f0 | |
| parent | 660f80c3d60083ecba26c83c0670ccca7fc56e09 (diff) | |
[1.5.x] Fixed #19776 -- Added missing import for backport
line was present on master from 1520748dac95a7f114e4bb2feeee04d46c720494
| -rw-r--r-- | django/contrib/auth/tests/auth_backends.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/auth/tests/auth_backends.py b/django/contrib/auth/tests/auth_backends.py index 75cec10cf9..be29d9e78b 100644 --- a/django/contrib/auth/tests/auth_backends.py +++ b/django/contrib/auth/tests/auth_backends.py @@ -7,6 +7,7 @@ from django.contrib.auth.tests.utils import skipIfCustomUser from django.contrib.auth.tests.custom_user import ExtensionUser, CustomPermissionsUser, CustomUser from django.contrib.contenttypes.models import ContentType from django.core.exceptions import ImproperlyConfigured +from django.contrib.auth import authenticate from django.test import TestCase from django.test.utils import override_settings |
