summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperty/15.2.3.6-3-232.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-3-232.js')
-rw-r--r--test/built-ins/Object/defineProperty/15.2.3.6-3-232.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-3-232.js b/test/built-ins/Object/defineProperty/15.2.3.6-3-232.js
index 6aa61c654..1556b1c7b 100644
--- a/test/built-ins/Object/defineProperty/15.2.3.6-3-232.js
+++ b/test/built-ins/Object/defineProperty/15.2.3.6-3-232.js
@@ -6,10 +6,8 @@ es5id: 15.2.3.6-3-232
description: >
Object.defineProperty - value of 'get' property in 'Attributes' is
a function (8.10.5 step 7.b)
-includes: [runTestCase.js]
---*/
-function testcase() {
var obj = {};
Object.defineProperty(obj, "property", {
@@ -18,6 +16,5 @@ function testcase() {
}
});
- return obj.hasOwnProperty("property") && obj.property === "getFunction";
- }
-runTestCase(testcase);
+assert(obj.hasOwnProperty("property"), 'obj.hasOwnProperty("property") !== true');
+assert.sameValue(obj.property, "getFunction", 'obj.property');