Use older syntax for `println` in test

This commit is contained in:
Zanie 2023-11-15 12:01:01 -06:00
parent 6af26817cf
commit b2112f4058
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ fn fmt_report_with_settings(
handler.render_report(&mut out, diag.as_ref()).unwrap();
println!("Error:\n```\n{out}\n```");
println!("Error:\n```\n{}\n```", out);
out
}