summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-07 17:53:23 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-07 17:53:23 +0000
commita59095af24bb64a025ce99de3555f2a21da7a2e8 (patch)
tree7594e9afa256880ff4cfc7f43fed851f4a0f7133 /tests
parentfb9ac5729d309f6ec59e4089b7ab04378cb9082a (diff)
Fixed #11030: fixed file uploads on non-utf8 filesystem encoding. Thanks, Honza Kral.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10693 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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.