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 4c3bfb9621e CAMEL-18349 Lower the number of operators an XPath
expression can contain for XPathRouteConcurrentBigTest. (#8108)
4c3bfb9621e is described below
commit 4c3bfb9621eebaf0d93a232c9c687ee59d7f2b65
Author: JiriOndrusek <[email protected]>
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();
}
};