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 2023/12/22 10:15:15 UTC

(camel) branch main updated: CAMEL-19681: Fixed BodyAs

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 05f737e4a46 CAMEL-19681: Fixed BodyAs
05f737e4a46 is described below

commit 05f737e4a46ccac7bd3de7129559bdb8aa75d2b2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Dec 22 11:01:04 2023 +0100

    CAMEL-19681: Fixed BodyAs
---
 .../java/org/apache/camel/language/csimple/joor/OriginalSimpleTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-csimple-joor/src/test/java/org/apache/camel/language/csimple/joor/OriginalSimpleTest.java b/components/camel-csimple-joor/src/test/java/org/apache/camel/language/csimple/joor/OriginalSimpleTest.java
index e6de82b4906..1f69577ef3f 100644
--- a/components/camel-csimple-joor/src/test/java/org/apache/camel/language/csimple/joor/OriginalSimpleTest.java
+++ b/components/camel-csimple-joor/src/test/java/org/apache/camel/language/csimple/joor/OriginalSimpleTest.java
@@ -348,7 +348,7 @@ public class OriginalSimpleTest extends LanguageTestSupport {
 
         exchange.getIn().setBody(map);
 
-        assertExpression("${BodyAs(Map)?.get(\"list\")[0].toString}", null);
+        assertExpression("${bodyAs(Map)?.get(\"list\")[0].toString}", null);
     }
 
     @Test