Allow legacy build tests to pass.

This commit is contained in:
John-David Dalton
2014-01-21 20:49:44 -08:00
parent a249b315ca
commit 38bb975abd

View File

@@ -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);