summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/some/15.4.4.17-2-1.js')
-rw-r--r--test/built-ins/Array/prototype/some/15.4.4.17-2-1.js24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js b/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js
index b8d3aec50..aa8eeca34 100644
--- a/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js
+++ b/test/built-ins/Array/prototype/some/15.4.4.17-2-1.js
@@ -9,20 +9,20 @@ description: >
Array-like object
---*/
- function callbackfn1(val, idx, obj) {
- return val > 10;
- }
+function callbackfn1(val, idx, obj) {
+ return val > 10;
+}
- function callbackfn2(val, idx, obj) {
- return val > 11;
- }
+function callbackfn2(val, idx, obj) {
+ return val > 11;
+}
- var obj = {
- 0: 9,
- 1: 11,
- 2: 12,
- length: 2
- };
+var obj = {
+ 0: 9,
+ 1: 11,
+ 2: 12,
+ length: 2
+};
assert(Array.prototype.some.call(obj, callbackfn1), 'Array.prototype.some.call(obj, callbackfn1) !== true');
assert.sameValue(Array.prototype.some.call(obj, callbackfn2), false, 'Array.prototype.some.call(obj, callbackfn2)');