Bug 1319237 - Lower timeout elapse evaluation count; r=me a=followup-to-prevent-back out

Although low, 150 evaluations appears to cause intermittents with on
slow try environments, such as Android emulators.

Since the purpose of this test is to check that the timeout elapses
properly, we are not reducing quality by testing for a lower number
of evaluations.

MozReview-Commit-ID: KqOTARg1AHP

--HG--
extra : rebase_source : b10f0b066ce6201c07c5e7b40ebc32e60698374c
This commit is contained in:
Andreas Tolfsen 2017-02-13 12:02:01 -08:00
Родитель 1ed0b133b2
Коммит 528d9653a3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -21,7 +21,7 @@ add_task(function* test_until_timeoutElapse() {
});
let end = new Date().getTime();
greaterOrEqual((end - start), 2000);
greaterOrEqual(nevals, 150);
greaterOrEqual(nevals, 15);
});
add_task(function* test_until_rethrowError() {