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/06/27 12:50:49 UTC

[camel] 02/02: CAMEL-12600 - Fixed Camel-twilio Spring Boot 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

commit 81f2a31dfe5a7679e00ddd50896f3c93f9d2fe08
Author: Andrea Cosentino <an...@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();
     }