diff options
author | jikstra <jikstra@disroot.org> | 2021-09-11 12:04:32 +0000 |
---|---|---|
committer | jikstra <jikstra@disroot.org> | 2021-09-11 12:04:32 +0000 |
commit | 726411a1d9a605d159a6f3b1c64f761573a91895 (patch) | |
tree | 5d7f76b90f13c7c9623eaa65c3a9bbf38c2220b6 /tests/raw.rs | |
parent | Fix tests (diff) | |
download | miniserve-726411a1d9a605d159a6f3b1c64f761573a91895.tar.gz miniserve-726411a1d9a605d159a6f3b1c64f761573a91895.zip |
cargo fmt
Diffstat (limited to 'tests/raw.rs')
-rw-r--r-- | tests/raw.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/raw.rs b/tests/raw.rs index 0aca2ed..82a1eee 100644 --- a/tests/raw.rs +++ b/tests/raw.rs @@ -59,7 +59,9 @@ fn ui_displays_wget_element(#[with(&["-W"])] server: TestServer) -> Result<(), E #[rstest] /// All hrefs in raw mode are links to directories or files & directories end with ?raw=true -fn raw_mode_links_to_directories_end_with_raw_true(#[with(&["-W"])] server: TestServer) -> Result<(), Error> { +fn raw_mode_links_to_directories_end_with_raw_true( + #[with(&["-W"])] server: TestServer, +) -> Result<(), Error> { fn verify_a_tags(parsed: Document) { // Ensure all links end with ?raw=true or are files for node in parsed.find(Name("a")) { |