Merge pull request #170 from cakebaker/clippy_fix_warning

clippy: fix warning from `uninlined_format_args`
This commit is contained in:
Sylvestre Ledru
2025-06-27 09:54:14 +02:00
committed by GitHub
+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")
};