mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-12 07:58:54 +01:00
fix the sort
This commit is contained in:
parent
e8cd571820
commit
0ba6253eed
@ -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().into_string().unwrap().cmp(&b.file_name().into_string().unwrap())
|
||||
} else if aft.is_file() {
|
||||
a.file_name().cmp(&b.file_name())
|
||||
} else if aft.is_file() && bft.is_dir() {
|
||||
std::cmp::Ordering::Greater
|
||||
} else if bft.is_file() {
|
||||
} else if bft.is_file() && aft.is_dir() {
|
||||
std::cmp::Ordering::Less
|
||||
} else {
|
||||
a.file_name().into_string().unwrap().cmp(&b.file_name().into_string().unwrap())
|
||||
a.file_name().cmp(&b.file_name())
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user