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 02c11dc Fixed camel-salesforce tests 02c11dc is described below commit 02c11dcf729e5b08f303318e31a5661ed729f4ed Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Jul 28 19:33:36 2020 +0200 Fixed camel-salesforce tests --- .../component/salesforce/internal/streaming/SubscriptionHelperTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/internal/streaming/SubscriptionHelperTest.java b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/internal/streaming/SubscriptionHelperTest.java index 988322c..9cab349 100644 --- a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/internal/streaming/SubscriptionHelperTest.java +++ b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/internal/streaming/SubscriptionHelperTest.java @@ -107,7 +107,7 @@ public class SubscriptionHelperTest { @Test public void shouldDetermineChannelNames() { assertThat(SubscriptionHelper.getChannelName("topic1")).isEqualTo("/topic/topic1"); - assertThat(SubscriptionHelper.getChannelName("event/Test")).isEqualTo("/event/Test__e"); + assertThat(SubscriptionHelper.getChannelName("event/Test")).isEqualTo("/event/Test"); assertThat(SubscriptionHelper.getChannelName("event/Test__e")).isEqualTo("/event/Test__e"); }