Whitespace nit in test.js. [ci skip]

This commit is contained in:
John-David Dalton
2013-11-29 08:40:13 -06:00
parent 34cf8fc43c
commit f818e5bc51

View File

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