1
0
mirror of https://github.com/django/django.git synced 2025-05-06 15:06:31 +00:00

[1.5.x] Fixed #19776 -- Added missing import for backport

line was present on master from 1520748dac95a7f114e4bb2feeee04d46c720494
This commit is contained in:
Preston Holmes 2013-02-08 00:28:37 -08:00
parent 660f80c3d6
commit 830b9fde46

View File

@ -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.auth.tests.custom_user import ExtensionUser, CustomPermissionsUser, CustomUser
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from django.core.exceptions import ImproperlyConfigured from django.core.exceptions import ImproperlyConfigured
from django.contrib.auth import authenticate
from django.test import TestCase from django.test import TestCase
from django.test.utils import override_settings from django.test.utils import override_settings