diff --git a/test/test.js b/test/test.js index af15f8a6d..c45f330b8 100644 --- a/test/test.js +++ b/test/test.js @@ -22640,12 +22640,12 @@ var lodash = _.runInContext({ 'Date': { 'now': function() { - return ++dateCount == 1 ? 0 : +new Date; + return ++dateCount < 4 ? 0 : +new Date; } } }); - var throttled = _.throttle(function(value) { + var throttled = lodash.throttle(function(value) { callCount++; return value; }, 32);