diff options
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js')
-rw-r--r-- | test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js b/test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js index af3ba07d2..ea8476132 100644 --- a/test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js +++ b/test/built-ins/Object/defineProperty/15.2.3.6-3-218-1.js @@ -9,13 +9,13 @@ description: > prototype object (8.10.5 step 7.a) ---*/ - var obj = {}; +var obj = {}; - Function.prototype.get = function () { - return "functionGetProperty"; - }; - var funObj = function () { }; +Function.prototype.get = function() { + return "functionGetProperty"; +}; +var funObj = function() {}; - Object.defineProperty(obj, "property", funObj); +Object.defineProperty(obj, "property", funObj); assert.sameValue(obj.property, "functionGetProperty", 'obj.property'); |