Author: hadrian
Date: Thu Nov 11 15:40:23 2010
New Revision: 1033966

URL: http://svn.apache.org/viewvc?rev=1033966&view=rev
Log:
minor checkstyle fix

Modified:
    
camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java

Modified: 
camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java?rev=1033966&r1=1033965&r2=1033966&view=diff
==============================================================================
--- 
camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java
 (original)
+++ 
camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java
 Thu Nov 11 15:40:23 2010
@@ -65,7 +65,8 @@ public class SftpSimpleProduceNotStepwis
             return;
         }
 
-        template.sendBodyAndHeader("sftp://localhost:"; + getPort() + "/" + 
FTP_ROOT_DIR + "/mysub/myother?username=admin&password=admin&stepwise=false", 
"Farewell World", Exchange.FILE_NAME, "farewell.txt");
+        template.sendBodyAndHeader("sftp://localhost:"; + getPort() + "/" + 
FTP_ROOT_DIR + "/mysub/myother?username=admin&password=admin&stepwise=false", 
+            "Farewell World", Exchange.FILE_NAME, "farewell.txt");
 
         File file = new File(FTP_ROOT_DIR + 
"/mysub/myother/farewell.txt").getAbsoluteFile();
         assertTrue("File should exist: " + file, file.exists());


Reply via email to