Reduce sleep time in unit test to prevent possible race condition.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1409352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
245fbc7d13
commit
586a9603ef
|
@ -59,7 +59,7 @@ public class FixedElapsedTimeTest {
|
|||
|
||||
while (!tec.isSatisfied(pop)) {
|
||||
try {
|
||||
Thread.sleep(500);
|
||||
Thread.sleep(50);
|
||||
} catch (InterruptedException e) {
|
||||
// ignore
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue