summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js')
-rw-r--r--test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js b/test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js
index b29d4de6f..100d0049d 100644
--- a/test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js
+++ b/test/built-ins/TypedArrays/from/new-instance-from-ordinary-object.js
@@ -24,8 +24,7 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue(result[3], NaN);
assert.sameValue(result.constructor, TA);
assert.sameValue(Object.getPrototypeOf(result), TA.prototype);
-},
-[
+}, [
Float32Array,
Float64Array
]);
@@ -40,8 +39,7 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue(result[3], 0);
assert.sameValue(result.constructor, TA);
assert.sameValue(Object.getPrototypeOf(result), TA.prototype);
-},
-[
+}, [
Int8Array,
Int32Array,
Int16Array,