summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js')
-rw-r--r--test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js b/test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js
index 78a3c00d0..d36712393 100644
--- a/test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js
+++ b/test/built-ins/TypedArray/prototype/set/array-arg-return-abrupt-from-toobject-offset.js
@@ -17,8 +17,8 @@ includes: [testTypedArray.js]
features: [TypedArray]
---*/
-testWithTypedArrayConstructors(function(TA, N) {
- var sample = new TA(N([1, 2, 3]));
+testWithTypedArrayConstructors(function(TA) {
+ var sample = new TA([1, 2, 3]);
assert.throws(TypeError, function() {
sample.set(undefined);