fix: resolve import errors in test modules and remove unused variables

Co-authored-by: aider (openai/andrew/openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-14 17:11:27 -03:00
parent acbeb297b2
commit 67af475339
14 changed files with 26 additions and 28 deletions

View File

@@ -31,7 +31,7 @@ mod tests {
// Create an empty test file
{
let file = File::create(&file_path).expect("Failed to create empty test file");
let _file = File::create(&file_path).expect("Failed to create empty test file");
// File is automatically closed when it goes out of scope
}