From 5b81c4573c1bedb57b3439550df12de7ec9575f8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 15 Jan 2015 23:27:20 -0800 Subject: [PATCH] Cleanup test titles. --- test/test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test.js b/test/test.js index e786808e5..7f5490fa9 100644 --- a/test/test.js +++ b/test/test.js @@ -6212,7 +6212,7 @@ strictEqual(_.isEmpty(), true); }); - test('should return `false` for non-empty values', 3, function() { + test('should return `false` for non empty values', 3, function() { strictEqual(_.isEmpty([0]), false); strictEqual(_.isEmpty({ 'a': 0 }), false); strictEqual(_.isEmpty('a'), false); @@ -6905,7 +6905,7 @@ deepEqual(actual, expected); }); - test('should return `false` for non-error objects', 12, function() { + test('should return `false` for non error objects', 12, function() { var expected = _.map(falsey, _.constant(false)); var actual = _.map(falsey, function(value, index) { @@ -6961,7 +6961,7 @@ deepEqual(actual, expected); }); - test('should return `false` for non-finite values', 9, function() { + test('should return `false` for non finite values', 9, function() { var values = [NaN, Infinity, -Infinity, Object(1)], expected = _.map(values, _.constant(false)); @@ -6981,7 +6981,7 @@ strictEqual(_.isFinite('a'), false); }); - test('should return `false` for non-numeric values', 1, function() { + test('should return `false` for non numeric values', 1, function() { var values = [undefined, [], true, new Date, new Error, '', ' ', '2px'], expected = _.map(values, _.constant(false));