summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/freeze/15.2.3.9-2-a-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/freeze/15.2.3.9-2-a-13.js')
-rw-r--r--test/built-ins/Object/freeze/15.2.3.9-2-a-13.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/built-ins/Object/freeze/15.2.3.9-2-a-13.js b/test/built-ins/Object/freeze/15.2.3.9-2-a-13.js
index 1abca86d8..ed8efa0fd 100644
--- a/test/built-ins/Object/freeze/15.2.3.9-2-a-13.js
+++ b/test/built-ins/Object/freeze/15.2.3.9-2-a-13.js
@@ -9,7 +9,11 @@ includes: [propertyHelper.js]
// default [[Configurable]] attribute value of "0": true
-var obj = { 0: 0, 1: 1, length: 2};
+var obj = {
+ 0: 0,
+ 1: 1,
+ length: 2
+};
Object.freeze(obj);