From d028fc80b6fbeb720bb02a8eda92572a25ade8d6 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 26 Aug 2025 08:22:48 -0400 Subject: [PATCH] crates/test-integration: Fix clippy lints Signed-off-by: Colin Walters --- crates/tests-integration/src/system_reinstall.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tests-integration/src/system_reinstall.rs b/crates/tests-integration/src/system_reinstall.rs index d7227d77..70bb3edc 100644 --- a/crates/tests-integration/src/system_reinstall.rs +++ b/crates/tests-integration/src/system_reinstall.rs @@ -41,7 +41,7 @@ fn get_deployment_dir() -> Result { .to_str() .ok_or_else(|| anyhow!("Deployment directory name {:?} is not valid UTF-8", hash))?; - println!("Using deployment directory: {}", hash_str); + println!("Using deployment directory: {hash_str}"); Ok(base_path.join(hash_str)) }