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 2019/02/18 06:50:37 UTC

[camel] branch master updated: Fixed Camel-Twitter Karaf feature 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 6bfd03f  Fixed Camel-Twitter Karaf feature test
6bfd03f is described below

commit 6bfd03f8d138926ee1366c846d5a75eb41f0d197
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 18 07:49:54 2019 +0100

    Fixed Camel-Twitter Karaf feature test
---
 .../test/java/org/apache/camel/itest/karaf/CamelTwitterTest.java   | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTwitterTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTwitterTest.java
index 7e164a3..bbced01 100644
--- a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTwitterTest.java
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTwitterTest.java
@@ -27,8 +27,11 @@ public class CamelTwitterTest extends BaseKarafTest {
 
     @Test
     public void test() throws Exception {
-        testComponent(COMPONENT);
+        testComponent(COMPONENT, "twitter-timeline");
+        testComponent(COMPONENT, "twitter-streaming");
+        testComponent(COMPONENT, "twitter-search");
+        testComponent(COMPONENT, "twitter-directmessage");
     }
 
 
-}
\ No newline at end of file
+}