From 93a607bea0bb4cf5dbe425635e539e921b9b9b8e Mon Sep 17 00:00:00 2001 From: jdalton Date: Sat, 24 Jan 2015 14:55:39 -0800 Subject: [PATCH] Reduce test hint for stable sort to match the commented issue. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index d5107f16f..bc7f925b3 100644 --- a/test/test.js +++ b/test/test.js @@ -11783,7 +11783,7 @@ deepEqual(actual, [1, 2, 3, 4]); }); - test('should perform a stable sort (test in IE > 8, Opera, and V8)', 1, function() { + test('should perform a stable sort (test in V8)', 1, function() { var actual = _.sortBy(stableOrder, function(pair) { return pair.a; });