Update insta test suite

This commit is contained in:
Guillaume Mourier
2022-10-28 18:11:11 +02:00
committed by Louis Dureuil
parent b078477d80
commit 426d63b01b
4 changed files with 34 additions and 13 deletions

View File

@ -193,6 +193,9 @@ impl From<AscDescError> for SortError {
AscDescError::ReservedKeyword { name } if name.starts_with("_geoRadius") => {
SortError::ReservedNameForFilter { name: String::from("_geoRadius") }
}
AscDescError::ReservedKeyword { name } if name.starts_with("_geoBoundingBox") => {
SortError::ReservedNameForFilter { name: String::from("_geoBoundingBox") }
}
AscDescError::ReservedKeyword { name } => SortError::ReservedName { name },
}
}