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

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


The following commit(s) were added to refs/heads/master by this push:
     new ff3d7c2  Reduce wait time in test.
ff3d7c2 is described below

commit ff3d7c2325aac03e1deb79eb343b5536029f4b15
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Jul 23 10:05:52 2020 -0400

    Reduce wait time in test.
---
 .../org/apache/commons/lang3/concurrent/locks/LockingVisitorsTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/lang3/concurrent/locks/LockingVisitorsTest.java
 
b/src/test/java/org/apache/commons/lang3/concurrent/locks/LockingVisitorsTest.java
index 8a92343..06944e3 100644
--- 
a/src/test/java/org/apache/commons/lang3/concurrent/locks/LockingVisitorsTest.java
+++ 
b/src/test/java/org/apache/commons/lang3/concurrent/locks/LockingVisitorsTest.java
@@ -28,7 +28,8 @@ import org.apache.commons.lang3.function.FailableConsumer;
 import org.junit.jupiter.api.Test;
 
 public class LockingVisitorsTest {
-    private static final long DELAY_MILLIS = 3000;
+
+    private static final long DELAY_MILLIS = 1500;
     private static final int NUMBER_OF_THREADS = 10;
     private static final long TOTAL_DELAY_MILLIS = NUMBER_OF_THREADS * 
DELAY_MILLIS;
 

Reply via email to