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:
Thomas Neidhart 2012-11-14 20:09:51 +00:00
parent 245fbc7d13
commit 586a9603ef
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class FixedElapsedTimeTest {
while (!tec.isSatisfied(pop)) {
try {
Thread.sleep(500);
Thread.sleep(50);
} catch (InterruptedException e) {
// ignore
}