From b2112f4058e5ee595bfe531b231db62d47a3e706 Mon Sep 17 00:00:00 2001 From: Zanie Date: Wed, 15 Nov 2023 12:01:01 -0600 Subject: [PATCH] Use older syntax for `println` in test --- tests/graphical.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/graphical.rs b/tests/graphical.rs index 81b8421..536efcd 100644 --- a/tests/graphical.rs +++ b/tests/graphical.rs @@ -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 }