summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js')
-rw-r--r--test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js b/test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js
index b748126af..24eebdf81 100644
--- a/test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js
+++ b/test/built-ins/TypedArrays/from/BigInt/mapfn-this-with-thisarg.js
@@ -26,7 +26,7 @@ testWithBigIntTypedArrayConstructors(function(TA) {
var results = [];
var mapfn = function() {
results.push(this);
- return convertToBigInt(0);
+ return 0n;
};
TA.from(source, mapfn, thisArg);