You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2024/01/18 12:50:19 UTC

(camel) branch main updated: CAMEL-20345: Simple binary operator should better be detected in predicate parser

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new ea6c8818467 CAMEL-20345: Simple binary operator should better be detected in predicate parser
ea6c8818467 is described below

commit ea6c88184679b800f6d2780f69799a22a20d03d6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Jan 18 13:50:02 2024 +0100

    CAMEL-20345: Simple binary operator should better be detected in predicate parser
---
 .../org/apache/camel/language/simple/SimpleParserPredicateTest.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleParserPredicateTest.java b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleParserPredicateTest.java
index 19584539cea..82b9c856a39 100644
--- a/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleParserPredicateTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/language/simple/SimpleParserPredicateTest.java
@@ -318,8 +318,7 @@ public class SimpleParserPredicateTest extends ExchangeTestSupport {
                 context,
                 expression,
                 true,
-                new HashMap<>()
-        );
+                new HashMap<>());
         Predicate predicate = simplePredicateParser.parsePredicate();
         assertNotNull(predicate);
     }