summaryrefslogtreecommitdiff
path: root/tests/template_tests
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-10-22 20:38:11 -0300
committerRamiro Morales <cramm0@gmail.com>2013-10-22 22:40:01 -0300
commitbcc65c13a086f3e6d24dc7fc92a167fd836af501 (patch)
tree55d025e8a1e8b7229fafb0fbbd5221db1de699af /tests/template_tests
parent2e74d6cb53a38c4cc08d4a069157be335a486ddd (diff)
[1.6.x] Fixed #21307 -- Moved TransRealMixin to django.test.utils.
51d2e1fb23 from master.
Diffstat (limited to 'tests/template_tests')
-rw-r--r--tests/template_tests/tests.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py
index 879acc15de..72d8631c8a 100644
--- a/tests/template_tests/tests.py
+++ b/tests/template_tests/tests.py
@@ -22,7 +22,7 @@ from django.template import (base as template_base, loader, Context,
from django.template.loaders import app_directories, filesystem, cached
from django.test import RequestFactory, TestCase
from django.test.utils import (setup_test_template_loader,
- restore_template_loaders, override_settings)
+ restore_template_loaders, override_settings, TransRealMixin)
from django.utils import unittest
from django.utils.encoding import python_2_unicode_compatible
from django.utils.formats import date_format
@@ -33,8 +33,6 @@ from django.utils import six
from django.utils.six.moves.urllib.parse import urljoin
from django.utils.tzinfo import LocalTimezone
-from i18n import TransRealMixin
-
try:
from .loaders import RenderToStringTest, EggLoaderTest
except ImportError as e: