Fix the extract test

This commit is contained in:
Mathijs van de Nes 2015-03-26 21:58:21 +01:00
parent 69599e1741
commit 32c54f7d6b

View file

@ -61,7 +61,7 @@ fn sanitize_filename(filename: &str) -> std::path::PathBuf
std::path::Path::new(no_null_filename)
.components()
.filter(|component| *component != std::path::Component::ParentDir)
.fold(std::path::PathBuf::new("."), |mut path, ref cur| {
.fold(std::path::PathBuf::new(), |mut path, ref cur| {
path.push(cur.as_os_str());
path
})