summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/find
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/find')
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/get-length-ignores-length-prop.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-func.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-method.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/name.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-changes-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-parameters.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-non-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-is-not-callable-throws.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-may-detach-buffer.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/predicate-not-called-on-empty-array.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/prop-desc.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/return-abrupt-from-predicate-call.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/return-found-value-predicate-result-is-true.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/BigInt/return-undefined-if-predicate-returns-false-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/get-length-ignores-length-prop.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/invoked-as-func.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/invoked-as-method.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/name.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-call-changes-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-call-parameters.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-call-this-non-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-call-this-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-is-not-callable-throws.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-may-detach-buffer.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/predicate-not-called-on-empty-array.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/prop-desc.js2
-rw-r--r--test/built-ins/TypedArray/prototype/find/return-abrupt-from-predicate-call.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/return-found-value-predicate-result-is-true.js1
-rw-r--r--test/built-ins/TypedArray/prototype/find/return-undefined-if-predicate-returns-false-value.js1
32 files changed, 10 insertions, 32 deletions
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/get-length-ignores-length-prop.js b/test/built-ins/TypedArray/prototype/find/BigInt/get-length-ignores-length-prop.js
index 790de25db..aa522e378 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/get-length-ignores-length-prop.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/get-length-ignores-length-prop.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
[[Get]] of "length" uses [[ArrayLength]]
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-func.js b/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-func.js
index eea7537b2..088c3398a 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-func.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-func.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: Throws a TypeError exception when invoked as a function
info: |
22.2.3.10 %TypedArray%.prototype.find (predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-method.js b/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-method.js
index ed0d1a9a2..7bb3bb741 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-method.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/invoked-as-method.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: Requires a [[TypedArrayName]] internal slot.
info: |
22.2.3.10 %TypedArray%.prototype.find (predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/length.js b/test/built-ins/TypedArray/prototype/find/BigInt/length.js
index e61e1c21e..3947f6bf8 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/length.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
%TypedArray%.prototype.find.length is 1.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/name.js b/test/built-ins/TypedArray/prototype/find/BigInt/name.js
index ab18751c2..d5dcef13c 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/name.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/name.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
%TypedArray%.prototype.find.name is "find".
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-changes-value.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-changes-value.js
index 6ed966f70..92a2a9349 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-changes-value.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-changes-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Change values during predicate call
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-parameters.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-parameters.js
index fd69894e6..fb1741af5 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-parameters.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-parameters.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate called as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-non-strict.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-non-strict.js
index 538bd26ac..882bd21af 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-non-strict.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-non-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Verify predicate this on non-strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-strict.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-strict.js
index 414440969..b7ce4535d 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-strict.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-call-this-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Verify predicate this on strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-is-not-callable-throws.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-is-not-callable-throws.js
index c9b0f5ace..b579dfa11 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-is-not-callable-throws.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-is-not-callable-throws.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Throws a TypeError exception if predicate is not callable.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-may-detach-buffer.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-may-detach-buffer.js
index fafed535e..49e58ac61 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-may-detach-buffer.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-may-detach-buffer.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate may detach the buffer
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-not-called-on-empty-array.js b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-not-called-on-empty-array.js
index 029c16522..230aff544 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/predicate-not-called-on-empty-array.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/predicate-not-called-on-empty-array.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate is not called on empty instances
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/prop-desc.js b/test/built-ins/TypedArray/prototype/find/BigInt/prop-desc.js
index 13af89a56..990975cd7 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/prop-desc.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/prop-desc.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
"find" property of TypedArrayPrototype
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/return-abrupt-from-predicate-call.js b/test/built-ins/TypedArray/prototype/find/BigInt/return-abrupt-from-predicate-call.js
index 0942d004d..0f693f4a2 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/return-abrupt-from-predicate-call.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/return-abrupt-from-predicate-call.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return abrupt from predicate call.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/return-found-value-predicate-result-is-true.js b/test/built-ins/TypedArray/prototype/find/BigInt/return-found-value-predicate-result-is-true.js
index 63fda9413..c4469ae2e 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/return-found-value-predicate-result-is-true.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/return-found-value-predicate-result-is-true.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return found value if predicate return a boolean true value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/BigInt/return-undefined-if-predicate-returns-false-value.js b/test/built-ins/TypedArray/prototype/find/BigInt/return-undefined-if-predicate-returns-false-value.js
index 86f3f6cd3..2c8e2d1c3 100644
--- a/test/built-ins/TypedArray/prototype/find/BigInt/return-undefined-if-predicate-returns-false-value.js
+++ b/test/built-ins/TypedArray/prototype/find/BigInt/return-undefined-if-predicate-returns-false-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return undefined if predicate always returns a boolean false value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/get-length-ignores-length-prop.js b/test/built-ins/TypedArray/prototype/find/get-length-ignores-length-prop.js
index 754c2d307..f236772a3 100644
--- a/test/built-ins/TypedArray/prototype/find/get-length-ignores-length-prop.js
+++ b/test/built-ins/TypedArray/prototype/find/get-length-ignores-length-prop.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
[[Get]] of "length" uses [[ArrayLength]]
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/invoked-as-func.js b/test/built-ins/TypedArray/prototype/find/invoked-as-func.js
index 07152e439..540aa34d7 100644
--- a/test/built-ins/TypedArray/prototype/find/invoked-as-func.js
+++ b/test/built-ins/TypedArray/prototype/find/invoked-as-func.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: Throws a TypeError exception when invoked as a function
info: |
22.2.3.10 %TypedArray%.prototype.find (predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/find/invoked-as-method.js b/test/built-ins/TypedArray/prototype/find/invoked-as-method.js
index 5661c00fb..98e6faa33 100644
--- a/test/built-ins/TypedArray/prototype/find/invoked-as-method.js
+++ b/test/built-ins/TypedArray/prototype/find/invoked-as-method.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: Requires a [[TypedArrayName]] internal slot.
info: |
22.2.3.10 %TypedArray%.prototype.find (predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/find/length.js b/test/built-ins/TypedArray/prototype/find/length.js
index 6bc32f8f0..b5f9a6e5a 100644
--- a/test/built-ins/TypedArray/prototype/find/length.js
+++ b/test/built-ins/TypedArray/prototype/find/length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
%TypedArray%.prototype.find.length is 1.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/name.js b/test/built-ins/TypedArray/prototype/find/name.js
index f8f7c11ff..a4975ab8a 100644
--- a/test/built-ins/TypedArray/prototype/find/name.js
+++ b/test/built-ins/TypedArray/prototype/find/name.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
%TypedArray%.prototype.find.name is "find".
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-call-changes-value.js b/test/built-ins/TypedArray/prototype/find/predicate-call-changes-value.js
index b036a7c92..f6fbe7290 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-call-changes-value.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-call-changes-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Change values during predicate call
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-call-parameters.js b/test/built-ins/TypedArray/prototype/find/predicate-call-parameters.js
index e31cb9522..42598466e 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-call-parameters.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-call-parameters.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate called as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-call-this-non-strict.js b/test/built-ins/TypedArray/prototype/find/predicate-call-this-non-strict.js
index d4a1ee560..3246908b6 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-call-this-non-strict.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-call-this-non-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Verify predicate this on non-strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-call-this-strict.js b/test/built-ins/TypedArray/prototype/find/predicate-call-this-strict.js
index f62576392..22ed01f77 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-call-this-strict.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-call-this-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Verify predicate this on strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-is-not-callable-throws.js b/test/built-ins/TypedArray/prototype/find/predicate-is-not-callable-throws.js
index a8adc918e..f470ad927 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-is-not-callable-throws.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-is-not-callable-throws.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Throws a TypeError exception if predicate is not callable.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-may-detach-buffer.js b/test/built-ins/TypedArray/prototype/find/predicate-may-detach-buffer.js
index 5dea87238..fbac50d14 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-may-detach-buffer.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-may-detach-buffer.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate may detach the buffer
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/predicate-not-called-on-empty-array.js b/test/built-ins/TypedArray/prototype/find/predicate-not-called-on-empty-array.js
index cda391591..304c5da96 100644
--- a/test/built-ins/TypedArray/prototype/find/predicate-not-called-on-empty-array.js
+++ b/test/built-ins/TypedArray/prototype/find/predicate-not-called-on-empty-array.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Predicate is not called on empty instances
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/prop-desc.js b/test/built-ins/TypedArray/prototype/find/prop-desc.js
index 0a2411280..b38c2b656 100644
--- a/test/built-ins/TypedArray/prototype/find/prop-desc.js
+++ b/test/built-ins/TypedArray/prototype/find/prop-desc.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.10
+esid: sec-%typedarray%.prototype.find
description: >
"find" property of TypedArrayPrototype
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/return-abrupt-from-predicate-call.js b/test/built-ins/TypedArray/prototype/find/return-abrupt-from-predicate-call.js
index ceb765ef1..1c99c9ef7 100644
--- a/test/built-ins/TypedArray/prototype/find/return-abrupt-from-predicate-call.js
+++ b/test/built-ins/TypedArray/prototype/find/return-abrupt-from-predicate-call.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return abrupt from predicate call.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/return-found-value-predicate-result-is-true.js b/test/built-ins/TypedArray/prototype/find/return-found-value-predicate-result-is-true.js
index 716b1638b..fa6aa2286 100644
--- a/test/built-ins/TypedArray/prototype/find/return-found-value-predicate-result-is-true.js
+++ b/test/built-ins/TypedArray/prototype/find/return-found-value-predicate-result-is-true.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return found value if predicate return a boolean true value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/find/return-undefined-if-predicate-returns-false-value.js b/test/built-ins/TypedArray/prototype/find/return-undefined-if-predicate-returns-false-value.js
index 0133a6948..2a59dc0a4 100644
--- a/test/built-ins/TypedArray/prototype/find/return-undefined-if-predicate-returns-false-value.js
+++ b/test/built-ins/TypedArray/prototype/find/return-undefined-if-predicate-returns-false-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.find
-es6id: 22.2.3.10
description: >
Return undefined if predicate always returns a boolean false value.
info: |