Skip to content

Commit

Permalink
forbidden file name on win
Browse files Browse the repository at this point in the history
  • Loading branch information
havardgulldahl committed Sep 4, 2016
1 parent 318ced5 commit f8996dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_JFS.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit f8996dc

Please sign in to comment.