aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/raw.rs4
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")) {