Ensure _.negate test for multiple arguments hits the 4 arguments case.

This commit is contained in:
John-David Dalton
2016-10-05 11:07:52 -07:00
parent 405d5875b8
commit af983b2dd3

View File

@@ -16071,7 +16071,7 @@
assert.expect(1);
var argCount,
count = 4,
count = 5,
negate = _.negate(function() { argCount = arguments.length; }),
expected = lodashStable.times(count, stubTrue);