From f818e5bc51b1bc8f33f41e98617b8cc228a5825b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 29 Nov 2013 08:40:13 -0600 Subject: [PATCH] Whitespace nit in test.js. [ci skip] --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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');