From 652499bdcf37d8775af6f5731ae27687bb785a70 Mon Sep 17 00:00:00 2001 From: jdalton Date: Fri, 13 Mar 2015 08:51:56 -0700 Subject: [PATCH] Cleanup `sortedIndex` test. --- test/test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index a03d282a3..7619207d4 100644 --- a/test/test.js +++ b/test/test.js @@ -13197,8 +13197,7 @@ objects = [{ 'x': 30 }, { 'x': 50 }]; test('`_.' + methodName + '` should return the correct insert index', 1, function() { - var array = [30, 50], - values = [30, 40, 50], + var values = [30, 40, 50], expected = isSortedIndex ? [0, 1, 1] : [1, 1, 2]; var actual = _.map(values, function(value) {