From 7eb7b08f7127d8fd4239312ae7c23b675484e8d3 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 13 Jul 2011 12:58:36 -0400 Subject: [PATCH] reverting a non-important change that broke reduceRight in IE. --- test/collections.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/collections.js b/test/collections.js index 719e6a1aa..005ee169e 100644 --- a/test/collections.js +++ b/test/collections.js @@ -79,8 +79,6 @@ $(document).ready(function() { ok(_.reduce(null, function(){}, 138) === 138, 'handles a null (with initial value) properly'); // Sparse arrays: - equals(_.reduce([], function(){}, undefined), undefined, 'undefined can be passed as a special case'); - var sparseArray = []; sparseArray[100] = 10; sparseArray[200] = 20;