diff --git a/test/test.js b/test/test.js index 1e9e2d288..0c0e9197c 100644 --- a/test/test.js +++ b/test/test.js @@ -5501,7 +5501,7 @@ strictEqual(actual.length, 0); }); - + test('`_.' + methodName + '` should clone `__bindData__` for created functions', 3, function() { function greet(greeting, name) { return greeting + ' ' + name; @@ -5509,7 +5509,7 @@ var par1 = func(greet, 'hi'), par2 = func(par1, 'barney'), par3 = func(par1, 'pebbles'); - + equal(par1('fred'), isPartial ? 'hi fred' : 'fred hi') equal(par2(), isPartial ? 'hi barney' : 'barney hi'); equal(par3(), isPartial ? 'hi pebbles' : 'pebbles hi');