summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2021-01-28 22:48:33 +0100
committerGitHub <noreply@github.com>2021-01-28 22:48:33 +0100
commit02080c165ee28713caf5e74773093aaa19d39b3e (patch)
tree03ebbed5a4e3c589328f36071760411507c6c7b1
parentbecfad26bee23a2d76333fa8b151f72f27668217 (diff)
parent674b49b9ee677091cddb6b66fc8811ee7402804d (diff)
Merge pull request #16284 from vespa-engine/balder/postpone-the-future
Postpone the future.
-rw-r--r--document/src/tests/documentselectparsertest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/document/src/tests/documentselectparsertest.cpp b/document/src/tests/documentselectparsertest.cpp
index 0830c84fe39..7e61752cc1e 100644
--- a/document/src/tests/documentselectparsertest.cpp
+++ b/document/src/tests/documentselectparsertest.cpp
@@ -754,9 +754,9 @@ TEST_F(DocumentSelectParserTest, operators_5)
PARSE("\"foo\".hash() == 123", *_doc[0], False);
PARSEI("(234).hash() == 123", *_doc[0], False);
PARSE("now() > 1311862500", *_doc[8], True);
- PARSE("now() < 1611862500", *_doc[8], True);
+ PARSE("now() < 1911862500", *_doc[8], True);
PARSE("now() < 1311862500", *_doc[8], False);
- PARSE("now() > 1611862500", *_doc[8], False);
+ PARSE("now() > 1911862500", *_doc[8], False);
// Arithmetics
PARSEI("id.specific.hash() % 10 = 8", *_doc[0], True);