summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2013-11-19 10:50:20 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2013-11-19 10:50:20 +0100
commitf89cddae666099892ef2a157ad94f367e1bffd84 (patch)
treeff9f39a4e827fb96e5b85ffb1d22f21cb0dccead
parent1135525eacbda195558fc92d0b4409fdf8e5cd7d (diff)
Fixed missing imports from 16e5fdd9cb8cca4d203b9255a9771b3c370e37d6.
-rw-r--r--django/contrib/auth/tests/auth_backends.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/auth/tests/auth_backends.py b/django/contrib/auth/tests/auth_backends.py
index 8da099566a..0ac2bf2115 100644
--- a/django/contrib/auth/tests/auth_backends.py
+++ b/django/contrib/auth/tests/auth_backends.py
@@ -7,7 +7,8 @@ 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.contrib.auth import authenticate, get_user
+from django.http import HttpRequest
from django.test import TestCase
from django.test.utils import override_settings