mirror of https://github.com/tc39/test262.git
Merge pull request #4109 from linusg/arraynt
Fix wrong array literal in Map/Set value tests
This commit is contained in:
commit
9dec509c93
|
@ -31,7 +31,7 @@ const bigInt64Array = new BigInt64Array([n1, n53]);
|
|||
const bigUint64Array = new BigUint64Array([n1, n53]);
|
||||
const symbol = Symbol('');
|
||||
const object = {};
|
||||
const array = {};
|
||||
const array = [];
|
||||
const string = '';
|
||||
const booleanTrue = true;
|
||||
const booleanFalse = true;
|
||||
|
|
|
@ -34,7 +34,7 @@ const bigInt64Array = new BigInt64Array([n1, n53]);
|
|||
const bigUint64Array = new BigUint64Array([n1, n53]);
|
||||
const symbol = Symbol('');
|
||||
const object = {};
|
||||
const array = {};
|
||||
const array = [];
|
||||
const string = '';
|
||||
const booleanTrue = true;
|
||||
const booleanFalse = true;
|
||||
|
|
Loading…
Reference in New Issue