Fix Clippy warnings

This commit is contained in:
Fabrice Reix 2024-06-19 10:52:47 +02:00
parent 0ddb0a9c1b
commit 05fd81f8c3
No known key found for this signature in database
GPG Key ID: BF5213154B2E7155
2 changed files with 2 additions and 2 deletions

View File

@ -146,6 +146,6 @@ mod tests {
assert_eq!(
base.join("//example.org/baz/index.html").unwrap(),
"http://example.org/baz/index.html".parse().unwrap()
)
);
}
}

View File

@ -233,6 +233,6 @@ ok 1 - test.1.hurl
ok 2 - test.2.hurl
not ok 3 - test.3.hurl
"#;
assert!(parse_tap_report(s).is_err())
assert!(parse_tap_report(s).is_err());
}
}