Bug 716403 - Fix intermittent failure of Bug 795785 test. r=ehsan

This test is prone to race conditions, up the timeout wait from 20ms to 100ms.
This commit is contained in:
Chris Lord 2013-03-07 10:17:34 +00:00
parent 25a04ac367
commit eeb79ae9ad

View File

@ -34,7 +34,7 @@ function hitEventLoop(aFunc, aTimes)
if (--aTimes) {
setTimeout(hitEventLoop, 0, aFunc, aTimes);
} else {
setTimeout(aFunc, 20);
setTimeout(aFunc, 100);
}
}