summaryrefslogtreecommitdiff
path: root/tests/regressiontests/templates/unicode.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/templates/unicode.py')
-rw-r--r--tests/regressiontests/templates/unicode.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/unicode.py b/tests/regressiontests/templates/unicode.py
index 2c41176b01..7cb2a28d15 100644
--- a/tests/regressiontests/templates/unicode.py
+++ b/tests/regressiontests/templates/unicode.py
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
from django.template import Template, TemplateEncodingError, Context
from django.utils.safestring import SafeData
+from django.utils import six
from django.utils.unittest import TestCase
@@ -27,5 +28,5 @@ class UnicodeTests(TestCase):
# they all render the same (and are returned as unicode objects and
# "safe" objects as well, for auto-escaping purposes).
self.assertEqual(t1.render(c3), t2.render(c3))
- self.assertIsInstance(t1.render(c3), unicode)
+ self.assertIsInstance(t1.render(c3), six.text_type)
self.assertIsInstance(t1.render(c3), SafeData)