From 68d023804496695c20ec3e5ffa9d300f7669eb7a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 21 Jan 2016 11:48:12 -0600 Subject: [PATCH] Remove `omitBy` and `pickBy` from `funcMethods`. --- test/test-fp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-fp.js b/test/test-fp.js index f8baa0751..0f9821c97 100644 --- a/test/test-fp.js +++ b/test/test-fp.js @@ -191,8 +191,8 @@ assert.expect(1); var funcMethods = [ - 'assignWith', 'extendWith', 'isEqualWith', 'isMatchWith', 'omitBy', - 'pickBy', 'reduce', 'reduceRight', 'transform', 'zipWith' + 'assignWith', 'extendWith', 'isEqualWith', 'isMatchWith', 'reduce', + 'reduceRight', 'transform', 'zipWith' ]; var expected = _.map(mapping.aryMethod[3], _.constant(true));