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 2020/09/25 18:45:12 UTC

[camel] 15/16: CAMEL-15567: components - Generate source code for creating endpoint uri via a map of properties. WIP

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

davsclaus pushed a commit to branch uri-assembler
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b993020df4dfe7edf115e521ae16eea29a7c83ac
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Sep 25 19:32:21 2020 +0200

    CAMEL-15567: components - Generate source code for creating endpoint uri via a map of properties. WIP
---
 .../org/apache/camel/component/log/LogEndpointUriAssemblerTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/log/LogEndpointUriAssemblerTest.java b/core/camel-core/src/test/java/org/apache/camel/component/log/LogEndpointUriAssemblerTest.java
index 2fe93bb..7af2ef5 100644
--- a/core/camel-core/src/test/java/org/apache/camel/component/log/LogEndpointUriAssemblerTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/component/log/LogEndpointUriAssemblerTest.java
@@ -22,7 +22,7 @@ public class LogEndpointUriAssemblerTest extends ContextTestSupport {
         // should find the source code generated assembler via classpath
         EndpointUriFactory assembler = context.adapt(ExtendedCamelContext.class).getEndpointUriFactory("log");
         Assertions.assertNotNull(assembler);
-        boolean generated = assembler instanceof LogEndpointUriAssembler;
+        boolean generated = assembler instanceof LogEndpointUriFactory;
         Assertions.assertTrue(generated);
 
         String uri = assembler.buildUri("log", params);