clippy: fix warning from uninlined_format_args

This commit is contained in:
Daniel Hofstetter
2025-06-27 09:45:11 +02:00
parent e031c8ce49
commit 832942c019
+1 -1
View File
@@ -840,7 +840,7 @@ mod tests {
let make_timezone = |input: &mut &str| {
timezone(input)
.map_err(|e| eprintln!("TEST FAILED AT:\n{e}"))
.map(|offset| format!("{}", offset))
.map(|offset| format!("{offset}"))
.expect("expect tests to succeed")
};