Repository: camel
Updated Branches:
  refs/heads/camel-2.16.x 395675341 -> f8c8bdcd9


fixed CS error


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

Branch: refs/heads/camel-2.16.x
Commit: f8c8bdcd9b6f2478b4edc4c9bb8e7ede6b73d954
Parents: 3956753
Author: Christian Mueller <cmuel...@apache.org>
Authored: Sat Jan 9 19:41:30 2016 +0100
Committer: Christian Mueller <cmuel...@apache.org>
Committed: Sat Jan 9 19:41:30 2016 +0100

----------------------------------------------------------------------
 .../test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f8c8bdcd/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java
 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java
index dc80d42..41eafbb 100644
--- 
a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java
+++ 
b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java
@@ -45,7 +45,7 @@ public class JdbcFix9491Test extends AbstractJdbcTestSupport {
         direct.sendBody("select * from customer");
 
         assertMockEndpointsSatisfied();
-        
Assert.assertEquals(2,mock.getReceivedExchanges().get(1).getIn().getBody(List.class).size());
+        Assert.assertEquals(2, 
mock.getReceivedExchanges().get(1).getIn().getBody(List.class).size());
 
     }
 

Reply via email to