diff options
author | André Bargull <andre.bargull@gmail.com> | 2015-08-11 17:52:55 +0200 |
---|---|---|
committer | André Bargull <andre.bargull@gmail.com> | 2015-08-11 17:52:55 +0200 |
commit | 0a37298b4686b9f3a81a16036c9af1c1a18611bd (patch) | |
tree | 3eab9ed8c1e8ec55208ee9dfc4ab2154ee04ce2c /test/built-ins/Object/defineProperty/15.2.3.6-2-13.js | |
parent | c2a61d1735a4eda4d7c104e9609d04f71af6c515 (diff) | |
download | qtdeclarative-testsuites-0a37298b4686b9f3a81a16036c9af1c1a18611bd.tar.gz |
Replace runTestCase with assert helpers [test/built-ins/Object/defineProperty]
Diffstat (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-2-13.js')
-rw-r--r-- | test/built-ins/Object/defineProperty/15.2.3.6-2-13.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-2-13.js b/test/built-ins/Object/defineProperty/15.2.3.6-2-13.js index 6907e6606..230e0f1c7 100644 --- a/test/built-ins/Object/defineProperty/15.2.3.6-2-13.js +++ b/test/built-ins/Object/defineProperty/15.2.3.6-2-13.js @@ -6,14 +6,9 @@ es5id: 15.2.3.6-2-13 description: > Object.defineProperty - argument 'P' is a number that converts to a string (value is -Infinity) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = {}; Object.defineProperty(obj, -Infinity, {}); - return obj.hasOwnProperty("-Infinity"); - - } -runTestCase(testcase); +assert(obj.hasOwnProperty("-Infinity"), 'obj.hasOwnProperty("-Infinity") !== true'); |