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