summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/freeze/15.2.3.9-2-a-11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/freeze/15.2.3.9-2-a-11.js')
-rw-r--r--test/built-ins/Object/freeze/15.2.3.9-2-a-11.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/built-ins/Object/freeze/15.2.3.9-2-a-11.js b/test/built-ins/Object/freeze/15.2.3.9-2-a-11.js
index 914894864..91f1c1a01 100644
--- a/test/built-ins/Object/freeze/15.2.3.9-2-a-11.js
+++ b/test/built-ins/Object/freeze/15.2.3.9-2-a-11.js
@@ -11,9 +11,7 @@ includes: [propertyHelper.js]
// default [[Configurable]] attribute value of "0": true
-var argObj = (function() {
- return arguments;
-}(1, 2, 3));
+var argObj = (function () { return arguments; }(1, 2, 3));
Object.freeze(argObj);
@@ -22,3 +20,4 @@ var desc = Object.getOwnPropertyDescriptor(argObj, "0");
verifyNotWritable(argObj, "0");
verifyNotConfigurable(argObj, "0");
assert.sameValue(argObj[0], 1);
+