summaryrefslogtreecommitdiffhomepage
path: root/ci
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2025-07-08 17:11:23 +0200
committerLinus Färnstrand <linus@mullvad.net>2025-07-09 11:52:05 +0200
commit126ebffd7e1f371939395c6fdbe80fd6cc8373a8 (patch)
tree463d54be88cddba65dc261fbb77c9dd6f733b04e /ci
parent064fb834760b641afe536e35263dfbfd3a0bd1a9 (diff)
downloadmullvadvpn-126ebffd7e1f371939395c6fdbe80fd6cc8373a8.tar.xz
mullvadvpn-126ebffd7e1f371939395c6fdbe80fd6cc8373a8.zip
Inline format arguments
Diffstat (limited to 'ci')
-rw-r--r--ci/ios/test-router/raas/src/capture/cleanup.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ios/test-router/raas/src/capture/cleanup.rs b/ci/ios/test-router/raas/src/capture/cleanup.rs
index 13189da464..43ec07590b 100644
--- a/ci/ios/test-router/raas/src/capture/cleanup.rs
+++ b/ci/ios/test-router/raas/src/capture/cleanup.rs
@@ -23,7 +23,7 @@ async fn delete_old_captures_inner(dir: &Path) -> std::io::Result<()> {
let path = path.clone();
delete_tasks.push(tokio::spawn(async move {
if let Err(e) = fs::remove_file(&path).await {
- eprintln!("Failed to delete {:?}: {}", path, e);
+ eprintln!("Failed to delete {path:?}: {e}");
}
}));
}