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 9523d4d  Camel-Undertow: Fixed CS
9523d4d is described below

commit 9523d4d4416380ef8fcfba91fbd5e28f5d5b3bde
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Thu Jul 18 08:12:50 2019 +0200

    Camel-Undertow: Fixed CS
---
 .../camel/component/undertow/UndertowHttpStreamingTest.java       | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpStreamingTest.java
 
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpStreamingTest.java
index a650495..c35668f 100644
--- 
a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpStreamingTest.java
+++ 
b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/UndertowHttpStreamingTest.java
@@ -48,8 +48,8 @@ public class UndertowHttpStreamingTest extends 
BaseUndertowTest {
         mock.expectedBodiesReceived(expectedLength);
 
         Exchange response = template.send(
-                "undertow:http://localhost:{{port}}?useStreaming=true";,
-                e -> produceStream(e));
+        "undertow:http://localhost:{{port}}?useStreaming=true";,
+        e -> produceStream(e));
         consumeStream(response);
         long length = response.getIn().getBody(Long.class).longValue();
 
@@ -65,8 +65,8 @@ public class UndertowHttpStreamingTest extends 
BaseUndertowTest {
         mock.expectedBodiesReceived(12);
 
         Exchange response = template.send(
-                "undertow:http://localhost:{{port}}?useStreaming=true";,
-                e -> { e.getIn().setBody("Hello Camel!"); });
+        "undertow:http://localhost:{{port}}?useStreaming=true";,
+        e -> e.getIn().setBody("Hello Camel!"));
         consumeStream(response);
         long length = response.getIn().getBody(Long.class).longValue();
 

Reply via email to