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 5492614  Fixed CS for camel-microprofile-config
5492614 is described below

commit 549261440ebb37c2694be7d85d900a9261f87c1a
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Tue Jul 2 08:20:52 2019 +0200

    Fixed CS for camel-microprofile-config
---
 .../microprofile/config/CamelMicroProfilePropertiesSourceTest.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/components/camel-microprofile-config/src/test/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSourceTest.java
 
b/components/camel-microprofile-config/src/test/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSourceTest.java
index 214d4bd..8ede269 100644
--- 
a/components/camel-microprofile-config/src/test/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSourceTest.java
+++ 
b/components/camel-microprofile-config/src/test/java/org/apache/camel/component/microprofile/config/CamelMicroProfilePropertiesSourceTest.java
@@ -54,11 +54,11 @@ public class CamelMicroProfilePropertiesSourceTest extends 
CamelTestSupport {
 
     @Test
     public void testMicroProfileConfig() throws Exception {
-          getMockEndpoint("mock:result").expectedBodiesReceived("Hello World");
+        getMockEndpoint("mock:result").expectedBodiesReceived("Hello World");
 
-          template.sendBody("direct:start", 
context.resolvePropertyPlaceholders("Hello {{hi}}"));
+        template.sendBody("direct:start", 
context.resolvePropertyPlaceholders("Hello {{hi}}"));
 
-          assertMockEndpointsSatisfied();
+        assertMockEndpointsSatisfied();
     }
 
     @Override

Reply via email to