You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2012/01/05 22:56:58 UTC

svn commit: r1227862 - /camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java

Author: cmueller
Date: Thu Jan  5 21:56:57 2012
New Revision: 1227862

URL: http://svn.apache.org/viewvc?rev=1227862&view=rev
Log:
fixed CS issue

Modified:
    camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java

Modified: camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java?rev=1227862&r1=1227861&r2=1227862&view=diff
==============================================================================
--- camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java (original)
+++ camel/branches/camel-2.7.x/camel-core/src/test/java/org/apache/camel/component/file/FileProduceAppendTest.java Thu Jan  5 21:56:57 2012
@@ -30,7 +30,7 @@ public class FileProduceAppendTest exten
 
     public void testAppendText() throws Exception {
         // we expect this file with the content 'Hello'
-    	assertFileExists("target/test-file-append/hello.txt");
+        assertFileExists("target/test-file-append/hello.txt");
 
         MockEndpoint mock = getMockEndpoint("mock:result");
         mock.expectedMessageCount(1);
@@ -43,7 +43,7 @@ public class FileProduceAppendTest exten
 
     public void testAppendFile() throws Exception {
         // we expect this file with the content 'Hello'
-    	assertFileExists("target/test-file-append/hello.txt");
+        assertFileExists("target/test-file-append/hello.txt");
 
         MockEndpoint mock = getMockEndpoint("mock:result");
         mock.expectedMessageCount(1);