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 2018/11/02 07:37:55 UTC

[camel] branch master updated: CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test

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 666437e  CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test
666437e is described below

commit 666437ed8c04b4c5648eb186d01c1e8a91145b5c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Nov 2 08:37:11 2018 +0100

    CAMEL-12838 - Camel Twitter Send Direct Message Endpoint not working, use cameltweet user in the test
---
 .../org/apache/camel/component/twitter/DirectMessageProducerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java b/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
index 1a4db99..b647b94 100644
--- a/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
+++ b/components/camel-twitter/src/test/java/org/apache/camel/component/twitter/DirectMessageProducerTest.java
@@ -67,7 +67,7 @@ public class DirectMessageProducerTest extends CamelTwitterTestSupport {
             public void configure() {
                 from("direct:tweets")
                         //.to("log:org.apache.camel.component.twitter?level=INFO&showAll=true&multiline=true")
-                        .to("twitter-directmessage:user?" + getUriTokens())
+                        .to("twitter-directmessage:cameltweet?" + getUriTokens())
                         //.to("log:org.apache.camel.component.twitter?level=INFO&showAll=true&multiline=true")
                         .to("mock:result");
             }