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 2020/09/04 06:28:57 UTC

[camel] branch master updated: Fixed CamelCatalogTest

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7bf9829  Fixed CamelCatalogTest
7bf9829 is described below

commit 7bf9829c6015c007945ca672c0757a748a2fd9bd
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Sep 4 08:26:34 2020 +0200

    Fixed CamelCatalogTest
---
 .../src/test/java/org/apache/camel/catalog/CamelCatalogTest.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
index 1819914..071e945 100644
--- a/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
+++ b/catalog/camel-catalog/src/test/java/org/apache/camel/catalog/CamelCatalogTest.java
@@ -1195,11 +1195,11 @@ public class CamelCatalogTest {
         assertTrue(result.getUnknown().contains("unknown"));
 
         // there is a type converter that converts from and to to phone number
-        uri = "zendesk:getTopicsByUser?userId=123";
+        uri = "zendesk:GET_TOPICS_BY_USER?userId=123";
         result = catalog.validateEndpointProperties(uri);
         assertTrue(result.isSuccess());
 
-        uri = "zendesk:getTopicsByUser?userId=123&unknown=true";
+        uri = "zendesk:GET_TOPICS_BY_USER?userId=123&unknown=true";
         result = catalog.validateEndpointProperties(uri);
         assertFalse(result.isSuccess());
         assertTrue(result.getUnknown().contains("unknown"));