From a5b733998d840fc55ba83772c408453697dfa89a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 28 Dec 2015 14:54:01 -0600 Subject: [PATCH] Remove "Opera" from test labels. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index ba26ce10e..e8f7e0c67 100644 --- a/test/test.js +++ b/test/test.js @@ -14612,7 +14612,7 @@ assert.strictEqual(_.parseInt('08', 10), 8); }); - QUnit.test('should parse strings with leading whitespace (test in Chrome, Firefox, and Opera)', function(assert) { + QUnit.test('should parse strings with leading whitespace (test in Chrome and Firefox)', function(assert) { assert.expect(2); var expected = [8, 8, 10, 10, 32, 32, 32, 32]; @@ -17822,7 +17822,7 @@ assert.deepEqual(actual, [objects[2], objects[0], objects[3], objects[1]]); }); - QUnit.test('`_.' + methodName + '` should perform a stable sort (test in IE > 8, Opera, and V8)', function(assert) { + QUnit.test('`_.' + methodName + '` should perform a stable sort (test in IE > 8 and V8)', function(assert) { assert.expect(2); lodashStable.each([stableArray, stableObject], function(value, index) {