summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/files/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeltests/files/models.py b/tests/modeltests/files/models.py
index ba3eb99910..30bbdf2841 100644
--- a/tests/modeltests/files/models.py
+++ b/tests/modeltests/files/models.py
@@ -70,13 +70,13 @@ ValueError: The 'normal' attribute has no file associated with it.
[]
>>> files.sort()
>>> files
-[u'default.txt', u'django_test.txt']
+['default.txt', 'django_test.txt']
>>> obj1.save()
>>> dirs, files = temp_storage.listdir('tests')
>>> files.sort()
>>> files
-[u'assignment.txt', u'default.txt', u'django_test.txt']
+['assignment.txt', 'default.txt', 'django_test.txt']
# Files can be read in a little at a time, if necessary.