mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
Use quotes instead of backticks.
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user