🩹 Mensajes de error en minúscula y corrige test

This commit is contained in:
Manuel Cillero 2026-03-21 13:26:11 +01:00 committed by Manuel Cillero
parent 72580d91b6
commit 0684472df2
3 changed files with 7 additions and 7 deletions

View file

@ -192,7 +192,7 @@ pub fn resolve_absolute_dir<P: AsRef<Path>>(path: P) -> io::Result<PathBuf> {
Ok(absolute_dir)
} else {
Err({
let msg = format!("Path \"{}\" is not a directory", absolute_dir.display());
let msg = format!("path \"{}\" is not a directory", absolute_dir.display());
trace::warn!(msg);
io::Error::new(io::ErrorKind::InvalidInput, msg)
})