summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/select
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-12-20 18:38:35 +0100
committerJon Bratseth <bratseth@gmail.com>2021-12-20 18:38:35 +0100
commite15a4a698a60001b7b323f88349fcc73a26333ac (patch)
treefe5d6a8ec9f485eb54ae1c6f61616cd3209cedd6 /container-search/src/test/java/com/yahoo/select
parent679e198009524e2040322d7f40ed70893586b27f (diff)
Allow unquoted annotations
Diffstat (limited to 'container-search/src/test/java/com/yahoo/select')
-rw-r--r--container-search/src/test/java/com/yahoo/select/SelectTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-search/src/test/java/com/yahoo/select/SelectTestCase.java b/container-search/src/test/java/com/yahoo/select/SelectTestCase.java
index 2e7e2a3a711..0dcfb8392ef 100644
--- a/container-search/src/test/java/com/yahoo/select/SelectTestCase.java
+++ b/container-search/src/test/java/com/yahoo/select/SelectTestCase.java
@@ -638,7 +638,7 @@ public class SelectTestCase {
@Test
public void testOpenIntervals() {
assertParse("{ \"range\" : { \"children\":[ \"title\", { \">=\" : 0.0, \"<=\" : 500.0 }] } }" +
- "select * from sources * where range(title, 0.0, 500.0);",
+ "select * from sources * where range(title, 0.0, 500.0)",
"title:[0.0;500.0]");
assertParse(
"{ \"range\" : { \"children\":[ \"title\", { \">\" : 0.0, \"<\" : 500.0 }] } }",