From b25a86f352ce13be279cf601552f6e3270430493 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 20 Sep 2016 07:49:59 -0700 Subject: [PATCH] Use `lodashStable.escape` in more places. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) + '

'; });