This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 3f471f869e69459f9dade6ecc97f7d7d3d3a4977 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Oct 26 16:24:21 2018 +0200 Fixed CS --- .../component/file/remote/sftp/SftpConsumerDisconnectTest.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpConsumerDisconnectTest.java b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpConsumerDisconnectTest.java index 8b78a32..b6e1286 100644 --- a/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpConsumerDisconnectTest.java +++ b/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpConsumerDisconnectTest.java @@ -105,10 +105,9 @@ public class SftpConsumerDisconnectTest extends SftpServerTestSupport { .noAutoStartup().process(new Processor() { @Override public void process(Exchange exchange) throws Exception { - disconnectAllSessions(); // disconnect all Sessions - // from the SFTP server - } - }).to("mock:result"); + disconnectAllSessions(); // disconnect all Sessions from the SFTP server + } + }).to("mock:result"); } }; }