summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperty/15.2.3.6-3-228.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-3-228.js')
-rw-r--r--test/built-ins/Object/defineProperty/15.2.3.6-3-228.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-3-228.js b/test/built-ins/Object/defineProperty/15.2.3.6-3-228.js
index 15a13c135..abacba3aa 100644
--- a/test/built-ins/Object/defineProperty/15.2.3.6-3-228.js
+++ b/test/built-ins/Object/defineProperty/15.2.3.6-3-228.js
@@ -7,10 +7,8 @@ description: >
Object.defineProperty - 'Attributes' is an Arguments object which
implements its own [[Get]] method to access the 'get' property
(8.10.5 step 7.a)
-includes: [runTestCase.js]
---*/
-function testcase() {
var obj = {};
var argObj = (function () { return arguments; })();
@@ -21,6 +19,4 @@ function testcase() {
Object.defineProperty(obj, "property", argObj);
- return obj.property === "argumentGetProperty";
- }
-runTestCase(testcase);
+assert.sameValue(obj.property, "argumentGetProperty", 'obj.property');