Increased timings of performance test, because the 100 ms does not work on our CI server.

This commit is contained in:
Arjen Poutsma 2008-11-19 15:42:16 +00:00
parent 6379c69c38
commit cc5d3ec389
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ import java.util.SortedSet;
import java.util.TreeMap;
import java.util.TreeSet;
import junit.framework.TestCase;
import junit.framework.Assert;
import junit.framework.TestCase;
import org.apache.commons.logging.LogFactory;
import org.hibernate.FlushMode;
@ -1092,7 +1092,7 @@ public class BeanWrapperTests extends TestCase {
bw.setPropertyValue("array", input);
}
sw.stop();
assertTrue("Took too long", sw.getLastTaskTimeMillis() < 100);
assertTrue("Took too long", sw.getLastTaskTimeMillis() < 125);
bw.registerCustomEditor(int.class, "array.somePath", new CustomNumberEditor(Integer.class, false));
sw.start("array3");