Fixed the CS error of camel-core

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

Branch: refs/heads/master
Commit: a13d98cc71bc6d222e5a970ddcd077d31172f83a
Parents: ca67266
Author: Willem Jiang <willem.ji...@gmail.com>
Authored: Thu Nov 14 10:58:31 2013 +0800
Committer: Willem Jiang <willem.ji...@gmail.com>
Committed: Thu Nov 14 10:58:31 2013 +0800

----------------------------------------------------------------------
 .../apache/camel/language/tokenizer/TokenizeLanguageTest.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a13d98cc/camel-core/src/test/java/org/apache/camel/language/tokenizer/TokenizeLanguageTest.java
----------------------------------------------------------------------
diff --git 
a/camel-core/src/test/java/org/apache/camel/language/tokenizer/TokenizeLanguageTest.java
 
b/camel-core/src/test/java/org/apache/camel/language/tokenizer/TokenizeLanguageTest.java
index 1860436..939fd10 100644
--- 
a/camel-core/src/test/java/org/apache/camel/language/tokenizer/TokenizeLanguageTest.java
+++ 
b/camel-core/src/test/java/org/apache/camel/language/tokenizer/TokenizeLanguageTest.java
@@ -66,10 +66,12 @@ public class TokenizeLanguageTest extends 
ContextTestSupport {
 
     public void testSendMixedClosingTagInsideMessageToTokenize() throws 
Exception {
         getMockEndpoint("mock:result").expectedBodiesReceived(
-            "<child name='child1'><grandchild name='grandchild1'/> <grandchild 
name='grandchild2'/></child>", "<child name='child2'><grandchild 
name='grandchild1'></grandchild><grandchild 
name='grandchild2'></grandchild></child>");
+            "<child name='child1'><grandchild name='grandchild1'/> <grandchild 
name='grandchild2'/></child>",
+            "<child name='child2'><grandchild 
name='grandchild1'></grandchild><grandchild 
name='grandchild2'></grandchild></child>");
 
         template.sendBody("direct:start",
-            "<parent><child name='child1'><grandchild name='grandchild1'/> 
<grandchild name='grandchild2'/></child><child name='child2'><grandchild 
name='grandchild1'></grandchild><grandchild 
name='grandchild2'></grandchild></child></parent>");
+            "<parent><child name='child1'><grandchild name='grandchild1'/> 
<grandchild name='grandchild2'/></child>"
+            + "<child name='child2'><grandchild 
name='grandchild1'></grandchild><grandchild 
name='grandchild2'></grandchild></child></parent>");
 
         assertMockEndpointsSatisfied();
     }

Reply via email to