You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2021/08/01 21:29:00 UTC

[commons-net] branch master updated: Shorter still (200)

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git


The following commit(s) were added to refs/heads/master by this push:
     new ed72d37  Shorter still (200)
ed72d37 is described below

commit ed72d3758fc8943863ee00015d8f07c02ebe8120
Author: Sebb <se...@apache.org>
AuthorDate: Sun Aug 1 22:28:53 2021 +0100

    Shorter still (200)
---
 src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java b/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java
index 9ba15d2..f4a2aa5 100644
--- a/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java
+++ b/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java
@@ -204,7 +204,7 @@ public class FTPSClientTest {
         //
         trace(">>loginClient-login");
         try {
-            Thread.sleep(500); // See if a short sleep before USER command helps
+            Thread.sleep(200); // See if a short sleep before USER command helps
         } catch (InterruptedException e) {};
         assertTrue(client.login("test", "test"));
         assertClientCode(client);