summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js')
-rw-r--r--test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js
index 3e712b86d..db9f7aeba 100644
--- a/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js
+++ b/test/built-ins/Array/prototype/reduce/15.4.4.21-8-c-4.js
@@ -9,11 +9,11 @@ description: >
properties but prototype contains a single property
---*/
- var arr = [, , , ];
+var arr = [, , , ];
- try {
- Array.prototype[1] = "prototype";
- arr.reduce(function () { });
- } finally {
- delete Array.prototype[1];
- }
+try {
+ Array.prototype[1] = "prototype";
+ arr.reduce(function() {});
+} finally {
+ delete Array.prototype[1];
+}