summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperty/15.2.3.6-4-574.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-4-574.js')
-rw-r--r--test/built-ins/Object/defineProperty/15.2.3.6-4-574.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-4-574.js b/test/built-ins/Object/defineProperty/15.2.3.6-4-574.js
index e68b6098f..0d63001c6 100644
--- a/test/built-ins/Object/defineProperty/15.2.3.6-4-574.js
+++ b/test/built-ins/Object/defineProperty/15.2.3.6-4-574.js
@@ -6,10 +6,8 @@ es5id: 15.2.3.6-4-574
description: >
ES5 Attributes - [[Set]] attribute is a function which has two
arguments
-includes: [runTestCase.js]
---*/
-function testcase() {
var obj = {};
var firstArg = 12;
var secondArg = 12;
@@ -24,6 +22,7 @@ function testcase() {
obj.prop = 100;
var desc = Object.getOwnPropertyDescriptor(obj, "prop");
- return obj.hasOwnProperty("prop") && desc.set === setFunc && firstArg === 100 && typeof secondArg === "undefined";
- }
-runTestCase(testcase);
+assert(obj.hasOwnProperty("prop"), 'obj.hasOwnProperty("prop") !== true');
+assert.sameValue(desc.set, setFunc, 'desc.set');
+assert.sameValue(firstArg, 100, 'firstArg');
+assert.sameValue(typeof secondArg, "undefined", 'typeof secondArg');