summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js')
-rw-r--r--test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js25
1 files changed, 12 insertions, 13 deletions
diff --git a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js
index ac47f378a..f5fc22ab3 100644
--- a/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js
+++ b/test/built-ins/Array/prototype/reduceRight/15.4.4.22-9-9.js
@@ -9,20 +9,19 @@ description: >
number of iterations
---*/
-var called = 0;
+ var called = 0;
+ function callbackfn(preVal, val, idx, obj) {
+ called++;
+ }
-function callbackfn(preVal, val, idx, obj) {
- called++;
-}
+ var arr = [0, 1, 2, 3];
+ Object.defineProperty(arr, "4", {
+ get: function () {
+ arr.length = 2;
+ },
+ configurable: true
+ });
-var arr = [0, 1, 2, 3];
-Object.defineProperty(arr, "4", {
- get: function() {
- arr.length = 2;
- },
- configurable: true
-});
-
-arr.reduceRight(callbackfn, "initialValue");
+ arr.reduceRight(callbackfn, "initialValue");
assert.sameValue(called, 3, 'called');