test: make_dummy_files: return an error instead of panicking

This commit is contained in:
Vinícius Miguel 2021-04-08 02:55:34 -03:00
parent 908f8e4e93
commit e7eb55a4cf

View File

@ -20,7 +20,6 @@ where
let _ = paths
.iter()
.map(make_dummy_file)
.map(Result::unwrap)
.collect::<Vec<_>>();
Ok(())
}