summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2018-02-15 14:38:00 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 16:45:10 -0500
commit77096157d10fcb6d72696456c5a9302ab29ba62a (patch)
tree9e0d0179561f691b81fabcb8a93410722229e03e
parentc6cd53594089d5ef80da752b7875b1cd01d73540 (diff)
downloadqtdeclarative-testsuites-77096157d10fcb6d72696456c5a9302ab29ba62a.tar.gz
fix syntax typo
-rw-r--r--test/built-ins/TypedArray/prototype/slice/BigInt/set-values-from-different-ctor-type.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArray/prototype/slice/BigInt/set-values-from-different-ctor-type.js b/test/built-ins/TypedArray/prototype/slice/BigInt/set-values-from-different-ctor-type.js
index 092bf2e7d..53ee40eba 100644
--- a/test/built-ins/TypedArray/prototype/slice/BigInt/set-values-from-different-ctor-type.js
+++ b/test/built-ins/TypedArray/prototype/slice/BigInt/set-values-from-different-ctor-type.js
@@ -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);