From 1a3c20f91dfefb41336cb1efdddba743ec5be4a9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 11 Dec 2012 01:10:52 -0800 Subject: [PATCH] Tweak `_.throttle` unit test pass more consistently. Former-commit-id: 91063b5c6ae0c9beb2c86cc21153d75f060afef1 --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 42da44867..91a6058a8 100644 --- a/test/test.js +++ b/test/test.js @@ -1818,12 +1818,12 @@ actual = counter + 2; throttled(); throttled(); - }, 64); + }, 128); setTimeout(function() { equal(counter, actual); QUnit.start(); - }, 128); + }, 256); ok(counter > 1); });