From 057dd5b0a883d079690b34df4e22ff610af8504a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 8 Apr 2016 10:47:22 -0700 Subject: [PATCH] Minor `escapeRegExp` test nit. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 378c715e1..96ffdd1c4 100644 --- a/test/test.js +++ b/test/test.js @@ -5257,7 +5257,7 @@ QUnit.test('should handle strings with nothing to escape', function(assert) { assert.expect(1); - assert.strictEqual(_.escapeRegExp('ghi'), 'ghi'); + assert.strictEqual(_.escapeRegExp('abc'), 'abc'); }); QUnit.test('should return an empty string for empty values', function(assert) {