summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/freeze/15.2.3.9-2-a-5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/freeze/15.2.3.9-2-a-5.js')
-rw-r--r--test/built-ins/Object/freeze/15.2.3.9-2-a-5.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/freeze/15.2.3.9-2-a-5.js b/test/built-ins/Object/freeze/15.2.3.9-2-a-5.js
index 598187ff9..1ffa486a1 100644
--- a/test/built-ins/Object/freeze/15.2.3.9-2-a-5.js
+++ b/test/built-ins/Object/freeze/15.2.3.9-2-a-5.js
@@ -14,16 +14,16 @@ var proto = {};
proto.foo = 0; // default [[Configurable]] attribute value of foo: true
-var Con = function() {};
+var Con = function () { };
Con.prototype = proto;
var child = new Con();
Object.defineProperty(child, "foo", {
- get: function() {
- return 10;
- },
- configurable: true
+ get: function () {
+ return 10;
+ },
+ configurable: true
});
Object.freeze(child);