From d80ce00623d7b1c1c3619b718cb2e4b79dc0e2f8 Mon Sep 17 00:00:00 2001 From: Guillaume Mourier Date: Tue, 1 Nov 2022 15:27:44 +0100 Subject: [PATCH] Update insta test --- filter-parser/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filter-parser/src/lib.rs b/filter-parser/src/lib.rs index 3e1c8baea..231050401 100644 --- a/filter-parser/src/lib.rs +++ b/filter-parser/src/lib.rs @@ -596,17 +596,17 @@ pub mod tests { "###); insta::assert_display_snapshot!(p("_geoBoundingBox"), @r###" - The `_geoBoundingBox` filter expects two pair of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. + The `_geoBoundingBox` filter expects two pairs of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. 1:16 _geoBoundingBox "###); insta::assert_display_snapshot!(p("_geoBoundingBox = 12"), @r###" - The `_geoBoundingBox` filter expects two pair of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. + The `_geoBoundingBox` filter expects two pairs of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. 1:21 _geoBoundingBox = 12 "###); insta::assert_display_snapshot!(p("_geoBoundingBox(1.0, 1.0)"), @r###" - The `_geoBoundingBox` filter expects two pair of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. + The `_geoBoundingBox` filter expects two pairs of arguments: `_geoBoundingBox((latitude, longitude), (latitude, longitude))`. 1:26 _geoBoundingBox(1.0, 1.0) "###);