diff --git a/test/test.js b/test/test.js index 055a45811..586b0015b 100644 --- a/test/test.js +++ b/test/test.js @@ -25142,7 +25142,7 @@ QUnit.test('should create a wrapped function', function(assert) { assert.expect(1); - var p = _.wrap(_.escape, function(func, text) { + var p = _.wrap(lodashStable.escape, function(func, text) { return '
' + func(text) + '
'; }); @@ -25179,7 +25179,7 @@ QUnit.test('should use `this` binding of function', function(assert) { assert.expect(1); - var p = _.wrap(_.escape, function(func) { + var p = _.wrap(lodashStable.escape, function(func) { return '' + func(this.text) + '
'; });