summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js')
-rw-r--r--test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js b/test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js
index 186585603..ca80064ec 100644
--- a/test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js
+++ b/test/built-ins/TypedArray/prototype/join/BigInt/result-from-tostring-on-each-simple-value.js
@@ -29,7 +29,7 @@ features: [BigInt, TypedArray]
---*/
testWithBigIntTypedArrayConstructors(function(TA) {
- var sample = new TA(convertToBigInt([1, 0, 2, 3, 42, 127]));
+ var sample = new TA([1n, 0n, 2n, 3n, 42n, 127n]);
var result = sample.join();