Repository: camel
Updated Branches:
  refs/heads/master c8833ddf9 -> ac4fff949


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/ac4fff94
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ac4fff94
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ac4fff94

Branch: refs/heads/master
Commit: ac4fff949b1d67f1be3f2fa9a577015a43db420a
Parents: c8833dd
Author: Christian Mueller <cmuel...@apache.org>
Authored: Sat Jan 9 19:34:12 2016 +0100
Committer: Christian Mueller <cmuel...@apache.org>
Committed: Sat Jan 9 19:34:12 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/ac4fff94/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