diff --git a/lodash.js b/lodash.js index 24ad261cf..f971f1f6c 100644 --- a/lodash.js +++ b/lodash.js @@ -14357,7 +14357,7 @@ lodash.prototype.next = wrapperNext; lodash.prototype.plant = wrapperPlant; lodash.prototype.reverse = wrapperReverse; - lodash.prototype.run = lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; + lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; if (iteratorSymbol) { lodash.prototype[iteratorSymbol] = wrapperToIterator; diff --git a/test/test.js b/test/test.js index f7a1edfaa..8a6b59cca 100644 --- a/test/test.js +++ b/test/test.js @@ -22816,16 +22816,15 @@ }); QUnit.test('should be aliased', function(assert) { - assert.expect(3); + assert.expect(2); if (!isNpm) { var expected = _.prototype.value; - assert.strictEqual(_.prototype.run, expected); assert.strictEqual(_.prototype.toJSON, expected); assert.strictEqual(_.prototype.valueOf, expected); } else { - skipTest(assert, 3); + skipTest(assert, 2); } }); }());