summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js')
-rw-r--r--test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js b/test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js
index e2f7352a0..35b6fa01c 100644
--- a/test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js
+++ b/test/built-ins/TypedArrays/internals/GetOwnProperty/key-is-not-canonical-index.js
@@ -26,9 +26,9 @@ var keys = [
"0.0000001"
];
-testWithTypedArrayConstructors(function(TA, N) {
+testWithTypedArrayConstructors(function(TA) {
keys.forEach(function(key) {
- var sample = new TA(N([42, 43]));
+ var sample = new TA([42, 43]);
assert.sameValue(
Object.getOwnPropertyDescriptor(sample, key),