From 3003d86264680433e789d2726d0d12d2c6267c40 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 30 Jan 2023 09:51:23 +0100 Subject: Apply clippy suggestions for 1.67 (#769) --- askama_hyper/tests/basic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_hyper/tests') diff --git a/askama_hyper/tests/basic.rs b/askama_hyper/tests/basic.rs index d0038c1..efa8ba5 100644 --- a/askama_hyper/tests/basic.rs +++ b/askama_hyper/tests/basic.rs @@ -43,7 +43,7 @@ async fn test_hyper() { server.await.expect("Could not serve"); }; let query = async move { - let uri = format!("http://{}/hello/world", local_addr) + let uri = format!("http://{local_addr}/hello/world") .parse() .expect("Could not format URI"); let client = Client::new(); -- cgit