Tweak _.throttle unit test pass more consistently.

Former-commit-id: 91063b5c6ae0c9beb2c86cc21153d75f060afef1
This commit is contained in:
John-David Dalton
2012-12-11 01:10:52 -08:00
parent fe3e78cc1c
commit 1a3c20f91d

View File

@@ -1818,12 +1818,12 @@
actual = counter + 2;
throttled();
throttled();
}, 64);
}, 128);
setTimeout(function() {
equal(counter, actual);
QUnit.start();
}, 128);
}, 256);
ok(counter > 1);
});