fix syntax typo

This commit is contained in:
Leo Balter 2018-02-15 14:38:00 -05:00
parent c6cd535940
commit 77096157d1

View File

@ -30,7 +30,7 @@ includes: [testBigIntTypedArray.js, compareArray.js]
features: [BigInt, Symbol.species, TypedArray] features: [BigInt, Symbol.species, TypedArray]
---*/ ---*/
var arr = [42n 43n, 44n]; var arr = [42n, 43n, 44n];
testWithBigIntTypedArrayConstructors(function(TA) { testWithBigIntTypedArrayConstructors(function(TA) {
var sample = new TA(arr); var sample = new TA(arr);