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-06 16:56:00 +00:00
Родитель 2de25383ce
Коммит cd6b85e091
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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