Fix clippy::default_constructed_unit_structs

This commit is contained in:
Eric Huss 2025-04-20 19:13:58 -07:00
parent 1d3b99c0df
commit e6b1413d22

View file

@ -859,7 +859,7 @@ mod tests {
.and_then(Value::as_str)
.unwrap();
assert_eq!(html, "html");
let html_renderer = HtmlHandlebars::default();
let html_renderer = HtmlHandlebars;
let pre = LinkPreprocessor::new();
let should_run = preprocessor_should_run(&pre, &html_renderer, &cfg);