From c4f8e83d02ba7ca93241cef22e032cb756f52300 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 26 Mar 2014 02:26:06 -0700 Subject: [PATCH] Cleanup test wording. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 9c3dde858..3fb21f1e5 100644 --- a/test/test.js +++ b/test/test.js @@ -2205,7 +2205,7 @@ deepEqual(_.difference(largeArray, [object2]), [object1]); }); - test('should ignore individual secondary values', 1, function() { + test('should ignore individual secondary arguments', 1, function() { var array = [0, 1, null, 3]; deepEqual(_.difference(array, 3, null, { '0': 1 }), array); }); @@ -9187,7 +9187,7 @@ } }); - test('should ignore individual secondary values', 1, function() { + test('should ignore individual secondary arguments', 1, function() { var array = [0]; deepEqual(_.xor(array, 3, null, { '0': 1 }), array); });