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
commit 81f2a31dfe5a7679e00ddd50896f3c93f9d2fe08 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jun 27 14:31:14 2018 +0200 CAMEL-12600 - Fixed Camel-twilio Spring Boot test --- .../test/java/org/apache/camel/itest/springboot/CamelTwilioTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelTwilioTest.java b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelTwilioTest.java index 8d1f96f..699e9b73 100644 --- a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelTwilioTest.java +++ b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelTwilioTest.java @@ -35,6 +35,8 @@ public class CamelTwilioTest extends AbstractSpringBootTestSupport { public static ITestConfig createTestConfig() { return new ITestConfigBuilder() .module(inferModuleName(CamelTwilioTest.class)) + .systemProperty("camel.component.twilio.username", "aaa") + .systemProperty("camel.component.twilio.password", "bbb") .build(); }