Skip to content

Commit

Permalink
remove the umlauts check from the unusual filenames check
Browse files Browse the repository at this point in the history
that needs to be debugged with direct access to a osx machine
  • Loading branch information
ThomasWaldmann committed Aug 8, 2015
1 parent c80d295 commit 1f6fae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion borg/testsuite/archiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def test_sparse_file(self):
self.assert_true(st.st_blocks * 512 < total_len / 10) # is output sparse?

def test_unusual_filenames(self):
filenames = ['normal', 'with some blanks', '(with_parens)', 'umlauts_äöüß', ]
filenames = ['normal', 'with some blanks', '(with_parens)', ]
for filename in filenames:
filename = os.path.join(self.input_path, filename)
with open(filename, 'wb') as fd:
Expand Down

0 comments on commit 1f6fae3

Please sign in to comment.