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

(camel) branch cloudevents-test created (now adc19b7e169)

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

acosentino pushed a change to branch cloudevents-test
in repository https://gitbox.apache.org/repos/asf/camel.git


      at adc19b7e169 Camel-CloudEvents: Fixed failing test

This branch includes the following new commits:

     new adc19b7e169 Camel-CloudEvents: Fixed failing test

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(camel) 01/01: Camel-CloudEvents: Fixed failing test

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch cloudevents-test
in repository https://gitbox.apache.org/repos/asf/camel.git

commit adc19b7e169b4b06536e0d1ab9eec49b08116f06
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Jan 12 10:04:24 2024 +0100

    Camel-CloudEvents: Fixed failing test
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../cloudevents/transformer/CloudEventJsonDataTypeTransformerTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-cloudevents/src/test/java/org/apache/camel/component/cloudevents/transformer/CloudEventJsonDataTypeTransformerTest.java b/components/camel-cloudevents/src/test/java/org/apache/camel/component/cloudevents/transformer/CloudEventJsonDataTypeTransformerTest.java
index 02b223e10a1..6f3376fe061 100644
--- a/components/camel-cloudevents/src/test/java/org/apache/camel/component/cloudevents/transformer/CloudEventJsonDataTypeTransformerTest.java
+++ b/components/camel-cloudevents/src/test/java/org/apache/camel/component/cloudevents/transformer/CloudEventJsonDataTypeTransformerTest.java
@@ -96,7 +96,7 @@ class CloudEventJsonDataTypeTransformerTest {
     @Test
     public void shouldLookupTransformer() throws Exception {
         Transformer transformer
-                = camelContext.getTransformerRegistry().resolveTransformer(new TransformerKey("application-cloudevents+json"));
+                = camelContext.getTransformerRegistry().resolveTransformer(new TransformerKey("application-cloudevents/json"));
         Assertions.assertNotNull(transformer);
         Assertions.assertEquals(CloudEventJsonDataTypeTransformer.class, transformer.getClass());
     }