fix: Add missing tempdir import and remove unused imports/variables

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 11:55:01 -03:00
parent 850f5fb80a
commit 68167e9d05

View File

@@ -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 {