update the syntax of the geoboundingbox filter to uses brackets instead of parens around lat and lng

This commit is contained in:
Tamo
2023-02-06 16:50:27 +01:00
parent 3ebc99473f
commit 1b005f697d
5 changed files with 35 additions and 35 deletions

View File

@ -161,7 +161,7 @@ mod tests {
("_geoRadius(42, 75, 59):asc", ReservedNameForFilter { name: S("_geoRadius") }),
("_geoBoundingBox:asc", ReservedNameForFilter { name: S("_geoBoundingBox") }),
(
"_geoBoundingBox((42, 75), (75, 59)):asc",
"_geoBoundingBox([42, 75], [75, 59]):asc",
ReservedNameForFilter { name: S("_geoBoundingBox") },
),
];