From 5be61796d94fc9143a07545e246632fa6c2c12c2 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 22 Aug 2016 23:05:42 -0700 Subject: [PATCH] Use quotes instead of backticks. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 323d81db4..cf2e308bf 100644 --- a/test/test.js +++ b/test/test.js @@ -7461,7 +7461,7 @@ QUnit.module('`__proto__` property bugs'); (function() { - QUnit.test('should work with the `__proto__` key in internal data objects', function(assert) { + QUnit.test('should work with the "__proto__" key in internal data objects', function(assert) { assert.expect(4); var stringLiteral = '__proto__', @@ -7478,7 +7478,7 @@ assert.deepEqual(_.without.apply(_, [largeArray].concat(largeArray)), []); }); - QUnit.test('should treat `__proto__` as a regular key in assignments', function(assert) { + QUnit.test('should treat "__proto__" as a regular key in assignments', function(assert) { assert.expect(1); var actual = _.groupBy([{ 'a': '__proto__' }], 'a');