aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js')
-rw-r--r--test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js b/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js
index cde9f4b12..dbc452b0c 100644
--- a/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js
+++ b/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js
@@ -1,12 +1,10 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Operator use ToNumber
- *
- * @path ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A3.1_T5.js
- * @description Checking for Number object
- */
+/*---
+info: Operator use ToNumber
+description: Checking for Number object
+---*/
//CHECK#1
if (parseInt("11", new Number(2)) !== parseInt("11", 2)) {
@@ -17,4 +15,3 @@ if (parseInt("11", new Number(2)) !== parseInt("11", 2)) {
if (parseInt("11", new Number(Infinity)) !== parseInt("11", Infinity)) {
$ERROR('#2: parseInt("11", new Number(Infinity)) === parseInt("11", Infinity). Actual: ' + (parseInt("11", new Number(Infinity))));
}
-