This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.18.x by this push: new 298df379391 CAMEL-18349 Lower the number of operators an XPath expression can contain for XPathRouteConcurrentBigTest. (#8108) 298df379391 is described below commit 298df379391ffef5c209c823abbd9fa039a2044f Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Fri Aug 5 07:14:43 2022 +0200 CAMEL-18349 Lower the number of operators an XPath expression can contain for XPathRouteConcurrentBigTest. (#8108) --- .../java/org/apache/camel/language/XPathRouteConcurrentBigTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/language/XPathRouteConcurrentBigTest.java b/core/camel-core/src/test/java/org/apache/camel/language/XPathRouteConcurrentBigTest.java index aa27df96fd8..9ff4bdf3969 100644 --- a/core/camel-core/src/test/java/org/apache/camel/language/XPathRouteConcurrentBigTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/language/XPathRouteConcurrentBigTest.java @@ -97,8 +97,7 @@ public class XPathRouteConcurrentBigTest extends ContextTestSupport { + "//messageType = 'AAP' or " + "//messageType = 'AAQ' or " + "//messageType = 'AAR' or " + "//messageType = 'AAS' or " + "//messageType = 'AAT' or " + "//messageType = 'AAU' or " + "//messageType = 'AAV' or " + "//messageType = 'AAW' or " - + "//messageType = 'AAX' or " + "//messageType = 'AAY' or " - + "//messageType = 'AAZ'") + + "//messageType = 'AAX' or " + "//messageType = 'AAY'") .to("mock:result").otherwise().to("mock:other").end(); } };