fmt
All checks were successful
Continuous Integration / Build and Test on ubuntu-latest (push) Successful in 4m1s

This commit is contained in:
2026-07-25 12:45:40 +02:00
parent f260715334
commit c4131a52c6

View File

@@ -1,4 +1,4 @@
use codebase_to_prompt::{run, Config, Format};
use codebase_to_prompt::{Config, Format, run};
use std::fs;
use std::path::PathBuf;
@@ -84,5 +84,8 @@ fn test_run_with_git_hash_append() {
let name = name.to_string_lossy();
name.starts_with("output_") && name.ends_with(".txt")
});
assert!(hashed_file.is_some(), "expected output file with git hash suffix");
assert!(
hashed_file.is_some(),
"expected output file with git hash suffix"
);
}