From c91e8d7aa7faa8b4766aae34e71d75ee34c6855e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 16 May 2014 00:43:38 -0700 Subject: [PATCH] Avoid a false fail in slower Ringo (and other slower environments). --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 77d2f8fcd..76ac0815e 100644 --- a/test/test.js +++ b/test/test.js @@ -2025,7 +2025,7 @@ test('should support a `maxWait` option', 2, function() { if (!(isRhino && isModularize)) { - var limit = (argv || isPhantom) ? 1000 : 256, + var limit = (argv || isPhantom) ? 1000 : 320, withCount = 0, withoutCount = 0;