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/07/30 09:49:42 UTC

[camel] branch camel-3.4.x updated: Camel-Salesforce: Fixed test (#4056)

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

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


The following commit(s) were added to refs/heads/camel-3.4.x by this push:
     new 0c964af  Camel-Salesforce: Fixed test (#4056)
0c964af is described below

commit 0c964af849f6828c9046c96715be5fedd45b2f14
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 30 11:49:22 2020 +0200

    Camel-Salesforce: Fixed test (#4056)
---
 .../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 cb582d3..413f12d 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
@@ -111,7 +111,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");
     }