From 38bb975abded74f114d1fbe211ec08b07a285ad0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 21 Jan 2014 20:49:44 -0800 Subject: [PATCH] Allow legacy build tests to pass. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index a90f947be..e8022ede0 100644 --- a/test/test.js +++ b/test/test.js @@ -5928,7 +5928,7 @@ test('`_.' + methodName + '` should work with curried methods', 2, function() { var fn = function(a, b, c) { return a + b + c; }, - curried = _.curry(func(fn, 1)); + curried = _.curry(func(fn, 1), 2); equal(curried(2, 3), 6); equal(curried(2)(3), 6);