-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
318ced5
commit f8996dc
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,7 +190,6 @@ def test_urlencoded_filename(self): | |
'My=funky=file.txt', # file name with equal signs | ||
'My&funky&file.txt', # file name with ampersand signs | ||
'My#funky#file.txt', # file name with pound signs | ||
'My:funky:file.txt', # file name with colon signs | ||
'My@[email protected]', # file name with at signs | ||
'My;funky;file.txt', # file name with semi-colon signs | ||
'My$funky$file.txt', # file name with dollar signs | ||
|
@@ -200,6 +199,7 @@ def test_urlencoded_filename(self): | |
if sys.platform != "win32": | ||
# some filenames are not allowed on fat32 | ||
test = tests + ['My?funky?file.txt', # file name with question marks | ||
'My:funky:file.txt', # file name with colon signs | ||
] | ||
|
||
for f in tests: | ||
|