try to convert the OsStr to a rust string to fix the sort

This commit is contained in:
Irevoire 2022-10-26 14:24:39 +02:00 committed by Clément Renault
parent 4f955e68b3
commit e8cd571820
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -219,13 +219,13 @@ pub(crate) mod test {
let (aft, bft) = (a.file_type().unwrap(), b.file_type().unwrap());
if aft.is_dir() && bft.is_dir() {
a.file_name().cmp(&b.file_name())
a.file_name().into_string().unwrap().cmp(&b.file_name().into_string().unwrap())
} else if aft.is_file() {
std::cmp::Ordering::Greater
} else if bft.is_file() {
std::cmp::Ordering::Less
} else {
a.file_name().cmp(&b.file_name())
a.file_name().into_string().unwrap().cmp(&b.file_name().into_string().unwrap())
}
});