From c099d603933b7ee0b7f9e1a301d648e45d9ecc2b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 26 Mar 2014 02:48:57 -0700 Subject: [PATCH] Fix test title typos. [ci skip] --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 660304bdc..048f38730 100644 --- a/test/test.js +++ b/test/test.js @@ -3674,7 +3674,7 @@ } }); - test('should with only secondary arguments', 1, function() { + test('should work with only secondary arguments', 1, function() { deepEqual(_.intersection(null, [1, 3, 2], [2, 1]), [1, 2]); }); @@ -8858,7 +8858,7 @@ deepEqual(actual, [1, 3, 2, [5], [4]]); }); - test('should with only secondary arguments', 1, function() { + test('should work with only secondary arguments', 1, function() { var actual = _.union(null, [1, 3, 2], [5, 4]); deepEqual(actual, [1, 3, 2, 5, 4]); });