summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/file_uploads/tests.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/file_uploads/tests.py b/tests/file_uploads/tests.py
index 5743344a51..df8f1b8031 100644
--- a/tests/file_uploads/tests.py
+++ b/tests/file_uploads/tests.py
@@ -209,10 +209,14 @@ class FileUploadTests(TestCase):
Receiving file upload when filename is blank (before and after
sanitization) should be okay.
"""
- # The second value is normalized to an empty name by
- # MultiPartParser.IE_sanitize()
- filenames = ['', 'C:\\Windows\\']
-
+ filenames = [
+ '',
+ # Normalized by MultiPartParser.IE_sanitize().
+ 'C:\\Windows\\',
+ # Normalized by os.path.basename().
+ '/',
+ 'ends-with-slash/',
+ ]
payload = client.FakePayload()
for i, name in enumerate(filenames):
payload.write('\r\n'.join([