summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js')
-rw-r--r--test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js b/test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js
index 630261a0f..dc4bb72be 100644
--- a/test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js
+++ b/test/built-ins/Object/defineProperty/15.2.3.6-3-139-1.js
@@ -9,13 +9,13 @@ description: >
of prototype object (8.10.5 step 5.a)
---*/
-var obj = {};
+ var obj = {};
-Function.prototype.value = "Function";
-var funObj = function(a, b) {
- return a + b;
-};
+ Function.prototype.value = "Function";
+ var funObj = function (a, b) {
+ return a + b;
+ };
-Object.defineProperty(obj, "property", funObj);
+ Object.defineProperty(obj, "property", funObj);
assert.sameValue(obj.property, "Function", 'obj.property');