From af983b2dd3ac59a5e3eb6df2d63eb4ce09e61cb2 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 5 Oct 2016 11:07:52 -0700 Subject: [PATCH] Ensure `_.negate` test for multiple arguments hits the 4 arguments case. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index eaf3e6c4d..ebd2a40b6 100644 --- a/test/test.js +++ b/test/test.js @@ -16071,7 +16071,7 @@ assert.expect(1); var argCount, - count = 4, + count = 5, negate = _.negate(function() { argCount = arguments.length; }), expected = lodashStable.times(count, stubTrue);