fix test variable
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/603755c6 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/603755c6 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/603755c6 Branch: refs/heads/master Commit: 603755c69d0490fb82964cf88b37862c3e0dc7c4 Parents: 195736c Author: Fabrizio Spataro <fabrizio.spat...@bizmate.it> Authored: Fri Oct 14 11:33:06 2016 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Mon Oct 17 13:11:28 2016 +0200 ---------------------------------------------------------------------- .../test/java/org/apache/camel/component/drill/ProducerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/603755c6/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java ---------------------------------------------------------------------- diff --git a/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java b/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java index d46d505..fd5888d 100644 --- a/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java +++ b/components/camel-drill/src/test/java/org/apache/camel/component/drill/ProducerTest.java @@ -28,9 +28,9 @@ import org.junit.Test; @Ignore("CAMEL-10327: Set host, mode and query to test drill producer (direct connection mode).") public class ProducerTest extends CamelTestSupport { - private final String host = "bizzy"; + private final String host = "localhost"; private final String mode = DrillConnectionMode.DRILLBIT.name().toLowerCase(); - private final String query = "select * from mongo.view.events limit 100"; + private final String query = "select * from schema.db"; @Test public void testProducer() throws Exception {