summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/defineProperty/15.2.3.6-4-488.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-4-488.js')
-rw-r--r--test/built-ins/Object/defineProperty/15.2.3.6-4-488.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-4-488.js b/test/built-ins/Object/defineProperty/15.2.3.6-4-488.js
index f207463a0..fafebace2 100644
--- a/test/built-ins/Object/defineProperty/15.2.3.6-4-488.js
+++ b/test/built-ins/Object/defineProperty/15.2.3.6-4-488.js
@@ -10,10 +10,9 @@ description: >
ES5 Attributes - property ([[Get]] is undefined, [[Set]] is a
Function, [[Enumerable]] is false, [[Configurable]] is false) is
undeletable
-includes: [runTestCase.js]
+includes: [propertyHelper.js]
---*/
-function testcase() {
var obj = {};
var verifySetFunc = "data";
@@ -35,4 +34,3 @@ function testcase() {
return propertyDefineCorrect && desc.configurable === false && obj.hasOwnProperty("prop");
}
-runTestCase(testcase);