Merge pull request #4109 from linusg/arraynt

Fix wrong array literal in Map/Set value tests
This commit is contained in:
Jordan Harband 2024-06-13 16:37:10 -07:00 committed by GitHub
commit 9dec509c93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

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