summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/of/new-instance.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/of/new-instance.js')
-rw-r--r--test/built-ins/TypedArrays/of/new-instance.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/TypedArrays/of/new-instance.js b/test/built-ins/TypedArrays/of/new-instance.js
index a0fbe0150..e83ad648d 100644
--- a/test/built-ins/TypedArrays/of/new-instance.js
+++ b/test/built-ins/TypedArrays/of/new-instance.js
@@ -23,12 +23,12 @@ includes: [testTypedArray.js]
features: [TypedArray]
---*/
-testWithTypedArrayConstructors(function(TA, N) {
- var result = TA.of(N(42), N(43), N(false));
+testWithTypedArrayConstructors(function(TA) {
+ var result = TA.of(42, 43, null);
assert.sameValue(result.length, 3);
- assert.sameValue(result[0], N(42));
- assert.sameValue(result[1], N(43));
- assert.sameValue(result[2], N(0));
+ assert.sameValue(result[0], 42);
+ assert.sameValue(result[1], 43);
+ assert.sameValue(result[2], 0);
assert.sameValue(result.constructor, TA);
assert.sameValue(Object.getPrototypeOf(result), TA.prototype);
});