diff --git a/test/test-build.js b/test/test-build.js index c90eac2c9..421d5b32b 100644 --- a/test/test-build.js +++ b/test/test-build.js @@ -94,9 +94,6 @@ return !/^_/.test(methodName); }); - /** List of all Lo-Dash methods */ - var lodashMethods = _.without(allMethods, 'findWhere'); - /** List of "Arrays" category methods */ var arraysMethods = [ 'compact', @@ -321,6 +318,10 @@ 'unzip' ]; + + /** List of all Lo-Dash methods */ + var lodashMethods = allMethods.slice(); + /** List of Underscore methods */ var underscoreMethods = _.without.apply(_, [allMethods].concat(lodashOnlyMethods));