You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2017/02/01 11:32:01 UTC

camel git commit: Fix CS

Repository: camel
Updated Branches:
  refs/heads/master e3ec108c8 -> 2de6d9079


Fix CS


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2de6d907
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2de6d907
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2de6d907

Branch: refs/heads/master
Commit: 2de6d9079fc81a510e63f902688a64a46c2b0aa9
Parents: e3ec108
Author: lburgazzoli <lb...@gmail.com>
Authored: Wed Feb 1 12:31:54 2017 +0100
Committer: lburgazzoli <lb...@gmail.com>
Committed: Wed Feb 1 12:31:54 2017 +0100

----------------------------------------------------------------------
 .../camel/test/blueprint/cloud/ServiceCallFilterTest.java | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/2de6d907/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/cloud/ServiceCallFilterTest.java
----------------------------------------------------------------------
diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/cloud/ServiceCallFilterTest.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/cloud/ServiceCallFilterTest.java
index 5c2a505..e5732ec 100644
--- a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/cloud/ServiceCallFilterTest.java
+++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/cloud/ServiceCallFilterTest.java
@@ -28,11 +28,17 @@ public class ServiceCallFilterTest extends CamelBlueprintTestSupport {
     public void testServiceFilter() throws Exception {
         Exchange result;
 
-        result = template.request("direct:start", e -> { return; } );
+        result = template.request("direct:start", e -> { 
+            return; 
+        });
+
         assertHeader(result, ServiceCallConstants.SERVICE_HOST, "host1");
         assertHeader(result, ServiceCallConstants.SERVICE_PORT, 9093);
 
-        result = template.request("direct:start", e -> { return; } );
+        result = template.request("direct:start", e -> { 
+            return;
+        });
+
         assertHeader(result, ServiceCallConstants.SERVICE_HOST, "host4");
         assertHeader(result, ServiceCallConstants.SERVICE_PORT, 9094);
     }