summaryrefslogtreecommitdiff
path: root/tests/httpwrappers
diff options
context:
space:
mode:
Diffstat (limited to 'tests/httpwrappers')
-rw-r--r--tests/httpwrappers/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/httpwrappers/tests.py b/tests/httpwrappers/tests.py
index 8dfa2876c8..a3d6691794 100644
--- a/tests/httpwrappers/tests.py
+++ b/tests/httpwrappers/tests.py
@@ -21,7 +21,7 @@ from django.http import (
from django.test import SimpleTestCase
from django.utils import six
from django.utils._os import upath
-from django.utils.encoding import smart_str
+from django.utils.encoding import force_str
from django.utils.functional import lazystr
@@ -291,10 +291,10 @@ class HttpResponseTests(unittest.TestCase):
# Latin-1 unicode or bytes values are also converted to native strings.
r['key'] = 'café'
- self.assertEqual(r['key'], smart_str('café', 'latin-1'))
+ self.assertEqual(r['key'], force_str('café', 'latin-1'))
self.assertIsInstance(r['key'], str)
r['key'] = 'café'.encode('latin-1')
- self.assertEqual(r['key'], smart_str('café', 'latin-1'))
+ self.assertEqual(r['key'], force_str('café', 'latin-1'))
self.assertIsInstance(r['key'], str)
self.assertIn('café'.encode('latin-1'), r.serialize_headers())