Reduce test hint for stable sort to match the commented issue.

This commit is contained in:
jdalton
2015-01-24 14:55:39 -08:00
parent 7bec7ba49d
commit 93a607bea0

View File

@@ -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;
});