summaryrefslogtreecommitdiff
path: root/tests/files
diff options
context:
space:
mode:
Diffstat (limited to 'tests/files')
-rw-r--r--tests/files/tests.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/files/tests.py b/tests/files/tests.py
index a0ff3d4782..50db4b7436 100644
--- a/tests/files/tests.py
+++ b/tests/files/tests.py
@@ -11,7 +11,6 @@ from django.core.files.move import file_move_safe
from django.core.files.temp import NamedTemporaryFile
from django.core.files.uploadedfile import SimpleUploadedFile, UploadedFile
from django.test import mock
-from django.utils import six
from django.utils._os import upath
try:
@@ -177,11 +176,11 @@ class ContentFileTestCase(unittest.TestCase):
def test_content_file_input_type(self):
"""
- ContentFile can accept both bytes and unicode and that the
- retrieved content is of the same type.
+ ContentFile can accept both bytes and strings and the retrieved content
+ is of the same type.
"""
self.assertIsInstance(ContentFile(b"content").read(), bytes)
- self.assertIsInstance(ContentFile("español").read(), six.text_type)
+ self.assertIsInstance(ContentFile("español").read(), str)
class DimensionClosingBug(unittest.TestCase):