summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js')
-rw-r--r--test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js b/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js
index b6862164e..82845b596 100644
--- a/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js
+++ b/test/built-ins/TypedArrays/prototype/fill/bigint-inherited.js
@@ -4,10 +4,10 @@
esid: sec-%typedarray%.prototype.fill
description: >
_TypedArray_.prototype has no own property "fill"
-includes: [testTypedArray.js]
-features: [TypedArray]
+includes: [testBigIntTypedArray.js]
+features: [BigInt, TypedArray]
---*/
-testWithTypedArrayConstructors(function(TA) {
+testWithBigIntTypedArrayConstructors(function(TA) {
assert.sameValue(TA.prototype.hasOwnProperty("fill"), false);
});