summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/some/15.4.4.17-5-7.js')
-rw-r--r--test/built-ins/Array/prototype/some/15.4.4.17-5-7.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js b/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js
index f4198a8b0..ae6c1fd3d 100644
--- a/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js
+++ b/test/built-ins/Array/prototype/some/15.4.4.17-5-7.js
@@ -7,8 +7,8 @@ es5id: 15.4.4.17-5-7
description: Array.prototype.some - built-in functions can be used as thisArg
---*/
- function callbackfn(val, idx, obj) {
- return this === eval;
- }
+function callbackfn(val, idx, obj) {
+ return this === eval;
+}
assert([11].some(callbackfn, eval), '[11].some(callbackfn, eval) !== true');