From 68167e9d0576463ee924b1ce1a22c1ad6ffb8c61 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Mon, 12 May 2025 11:55:01 -0300 Subject: [PATCH] fix: Add missing tempdir import and remove unused imports/variables --- src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests.rs b/src/tests.rs index b786d99..4385d06 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -3,8 +3,8 @@ mod tests { use std::fs; use std::path::Path; use std::process::Command; - use std::ffi::OsStr; use std::process::Stdio; + use tempfile::tempdir; // Helper function to run the keep command with given arguments fn run_keep(args: &[&str]) -> std::process::Output {