From 85415cd05b66ce9df7ad10d44aeccf169508c6ab Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 27 May 2026 12:44:20 +0100 Subject: [PATCH] test_infra: Fix clippy: uninlined_format_args Inline the format argument rather than provide it as a parameter. Signed-off-by: Rob Bradford --- test_infra/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_infra/src/lib.rs b/test_infra/src/lib.rs index 6a9addcef..e4f42a658 100644 --- a/test_infra/src/lib.rs +++ b/test_infra/src/lib.rs @@ -2097,7 +2097,7 @@ pub fn remote_command(api_socket: &str, command: &str, arg: Option<&str>) -> boo if output.status.success() { true } else { - eprintln!("Error running ch-remote command: {:?}", cmd); + eprintln!("Error running ch-remote command: {cmd:?}"); let stderr = String::from_utf8_lossy(&output.stderr); eprintln!("stderr: {stderr}"); false