make repo compatible with windows again

Apparently windows (or probably more precisely NTFS) can not deal with special
characters in file names.
This commit is contained in:
Johann150 2021-11-15 19:42:55 +01:00
parent 663cd3bf0d
commit e764d03458
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
3 changed files with 1 additions and 1 deletions

View file

@ -695,7 +695,7 @@ mod directory_listing {
assert_eq!(
page.body,
Some("This is a directory listing\n=> %23yeah #yeah\n=> a\n=> b\n=> huh%3F huh?\n=> wao%20spaces wao spaces\n".into())
Some("This is a directory listing\n=> a\n=> b\n=> wao%20spaces wao spaces\n".into())
);
}