1
0
mirror of https://github.com/django/django.git synced 2025-04-14 12:24:36 +00:00

Fixed missing imports from 16e5fdd9cb8cca4d203b9255a9771b3c370e37d6.

This commit is contained in:
Baptiste Mispelon 2013-11-19 10:50:20 +01:00
parent 1135525eac
commit f89cddae66

View File

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