From 528d9653a3fdf22e031da817934a06634dcadc11 Mon Sep 17 00:00:00 2001 From: Andreas Tolfsen Date: Mon, 13 Feb 2017 12:02:01 -0800 Subject: [PATCH] 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 --- testing/marionette/test_wait.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/marionette/test_wait.js b/testing/marionette/test_wait.js index 3ca514856d4b..d0a61dac847f 100644 --- a/testing/marionette/test_wait.js +++ b/testing/marionette/test_wait.js @@ -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() {