From 715f03f5f1a821ffdb417da04ce0280272f309c1 Mon Sep 17 00:00:00 2001 From: jdalton Date: Sat, 11 Apr 2015 22:16:03 -0700 Subject: [PATCH] Change `call` to `invoke` in `_.debounce` and `_.throttle` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 477aaff3a..9f602619f 100644 --- a/test/test.js +++ b/test/test.js @@ -15371,7 +15371,7 @@ } }); - asyncTest('_.' + methodName + ' should call `func` with the correct `this` binding', 1, function() { + asyncTest('_.' + methodName + ' should invoke `func` with the correct `this` binding', 1, function() { if (!(isRhino && isModularize)) { var object = { 'funced': func(function() { actual.push(this); }, 32)