fix syntax typo

This commit is contained in:
Leo Balter 2018-02-15 14:38:00 -05:00
parent c6cd535940
commit 77096157d1
1 changed files with 1 additions and 1 deletions

View File

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