Use quotes instead of backticks.

This commit is contained in:
John-David Dalton
2016-08-22 23:05:42 -07:00
parent 1aee1c6cb8
commit 5be61796d9

View File

@@ -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');