summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js')
-rw-r--r--test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js b/test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js
index 0e169de8e..fba15cc63 100644
--- a/test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js
+++ b/test/built-ins/TypedArrays/from/mapfn-this-with-thisarg.js
@@ -23,7 +23,7 @@ var thisArg = {};
testWithTypedArrayConstructors(function(TA) {
var results = [];
- var mapfn = function(kValue, k) {
+ var mapfn = function() {
results.push(this);
};