Fix sanitized_name test for Windows

This commit is contained in:
Mathijs van de Nes 2018-04-20 13:53:07 +02:00
parent 140021173a
commit 806147ac9e

View file

@ -112,6 +112,6 @@ mod test {
data_start: 0,
external_attributes: 0,
};
assert_eq!(data.file_name_sanitized().to_str().unwrap(), "path/etc/passwd");
assert_eq!(data.file_name_sanitized(), ::std::path::PathBuf::from("path/etc/passwd"));
}
}