summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);