aboutsummaryrefslogtreecommitdiffstats
path: root/tests/upload_files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/upload_files.rs')
-rw-r--r--tests/upload_files.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/upload_files.rs b/tests/upload_files.rs
index ecb7ddf..63374a2 100644
--- a/tests/upload_files.rs
+++ b/tests/upload_files.rs
@@ -118,7 +118,7 @@ fn uploading_files_is_restricted(#[case] server: TestServer) -> Result<(), Error
/// This tests that we can upload files to the directory specified by --allow-upload-dir
#[rstest]
#[case(server(&["-u", "someDir"]), vec!["someDir"])]
-#[case(server(&["-u", "./someDir"]), vec!["./someDir"])]
+#[case(server(&["-u", "./-someDir"]), vec!["./-someDir"])]
#[case(server(&["-u", "someDir/some_sub_dir"]), vec!["someDir/some_sub_dir"])]
#[case(server(&["-u", "someDir/some_sub_dir", "-u", "someDir/some_other_dir"]),
vec!["someDir/some_sub_dir", "someDir/some_other_dir"])]