Fix wrong array literal in Map/Set value tests

This commit is contained in:
Linus Groh 2024-06-14 01:26:22 +02:00
parent 58df8fb22a
commit 15ae4bb43f
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;