Try adding timezone awareness

This commit is contained in:
Cameron
2025-08-11 17:11:02 -04:00
parent 6aa3c932fb
commit 8d9a5fd79f
2 changed files with 70 additions and 8 deletions

View File

@@ -75,6 +75,7 @@ impl AppState {
#[cfg(test)]
fn create_test_subdir(base_path: &std::path::Path, name: &str) -> std::path::PathBuf {
let dir_path = base_path.join(name);
std::fs::create_dir_all(&dir_path).unwrap_or_else(|_| panic!("Failed to create {} directory", name));
std::fs::create_dir_all(&dir_path)
.unwrap_or_else(|_| panic!("Failed to create {} directory", name));
dir_path
}