This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch camel-2.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git
commit d2faa1d19afb5b77f8f7c216c43e2301baf7e91c
Author: Andrea Cosentino <ancosen@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");
}
|