This commit is contained in:
Guillaume Mourier
2022-10-28 18:22:26 +02:00
committed by Louis Dureuil
parent 426d63b01b
commit 65a3086cf1
3 changed files with 3 additions and 3 deletions

View File

@ -160,7 +160,7 @@ mod tests {
("_geoRadius:asc", ReservedNameForFilter { name: S("_geoRadius") }),
("_geoRadius(42, 75, 59):asc", ReservedNameForFilter { name: S("_geoRadius") }),
("_geoBoundingBox:asc", ReservedNameForFilter { name: S("_geoBoundingBox") }),
("_geoBoundinxBox((42, 75), (75, 59)):asc", ReservedNameForFilter { name: S("_geoBoundingBox") }),
("_geoBoundingBox((42, 75), (75, 59)):asc", ReservedNameForFilter { name: S("_geoBoundingBox") }),
];
for (input, expected) in invalid_criteria {