From 0904724694ae43adb9ba2693c142bc7cbacb077d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 9 Dec 2014 08:56:13 -0800 Subject: [PATCH] Tweak `_.includes` test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 4df2582d7..ad79d4ce1 100644 --- a/test/test.js +++ b/test/test.js @@ -5032,7 +5032,7 @@ }); test('should work with ' + key + ' and a `fromIndex` >= `collection.length`', 12, function() { - _.each([6, 8, Math.pow(2, 32), Infinity], function(fromIndex) { + _.each([4, 6, Math.pow(2, 32), Infinity], function(fromIndex) { strictEqual(_.includes(collection, 1, fromIndex), false); strictEqual(_.includes(collection, undefined, fromIndex), false); strictEqual(_.includes(collection, '', fromIndex), false);