diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-08-24 21:33:46 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-08-24 23:15:27 +0000 |
commit | e0fe92687032385c08bd0e4109d3af002a211d1f (patch) | |
tree | 433bad0a0b3dc8e2afb6975c9bd2c996b37f7161 /tests/fixtures/mod.rs | |
parent | Give up and just duplicate stuff (diff) | |
download | miniserve-e0fe92687032385c08bd0e4109d3af002a211d1f.tar.gz miniserve-e0fe92687032385c08bd0e4109d3af002a211d1f.zip |
Fix double-escaping (fixes #354)
Diffstat (limited to '')
-rw-r--r-- | tests/fixtures/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fixtures/mod.rs b/tests/fixtures/mod.rs index cec912a..49ed7bd 100644 --- a/tests/fixtures/mod.rs +++ b/tests/fixtures/mod.rs @@ -8,7 +8,7 @@ pub type Error = Box<dyn std::error::Error>; /// File names for testing purpose #[allow(dead_code)] -pub static FILES: &[&str] = &["test.txt", "test.html", "test.mkv"]; +pub static FILES: &[&str] = &["test.txt", "test.html", "test.mkv", "test \" \' & < >.csv"]; /// Directory names for testing purpose #[allow(dead_code)] |