1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 06:45:13 +01:00

crates/test-integration: Fix clippy lints

Signed-off-by: Colin Walters <walters@verbum.org>
This commit is contained in:
Colin Walters
2025-08-26 08:22:48 -04:00
parent c681354563
commit d028fc80b6

View File

@@ -41,7 +41,7 @@ fn get_deployment_dir() -> Result<std::path::PathBuf> {
.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))
}