diff --git a/test/test.js b/test/test.js index 0e8b6df26..86988c521 100644 --- a/test/test.js +++ b/test/test.js @@ -2984,10 +2984,11 @@ 'zip' ]; - var funcs = _.without.apply(_, [_.functions(_)].concat([ - '_', - '_each', - '_iteratorTemplate', + var allMethods = _.reject(_.functions(_), function(methodName) { + return /^_/.test(methodName); + }); + + var funcs = _.without.apply(_, [allMethods].concat([ 'after', 'bind', 'bindAll',