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

apupier 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 7dcc27e77fff Use disable annotation instead of empty method
7dcc27e77fff is described below

commit 7dcc27e77fff1b67cd05041c5d5f580256ccaf1c
Author: AurĂ©lien Pupier <[email protected]>
AuthorDate: Fri Feb 27 14:50:02 2026 +0100

    Use disable annotation instead of empty method
    
    It allows to have more visibility that the feature is not supported. it
    avoids having a green mark for it when in fact, it is not supported and
    it appears green because there is no test implementation
    
    Signed-off-by: AurĂ©lien Pupier <[email protected]>
---
 .../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 6a707c1f67ee..6c663d941e01 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
@@ -2997,7 +2997,7 @@ public class OriginalSimpleTest extends 
LanguageTestSupport {
         assertExpression("${header.value == null ? 'empty' : 'full'}", "full");
     }
 
-    @Test
+    @Disabled("Nested Ternary operator is not supported with csimple")
     public void testTernaryOperatorNested() {
         // not supported in csimple
     }

Reply via email to