aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js')
-rw-r--r--test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js b/test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js
index 063c4da9e..9d4167f7f 100644
--- a/test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js
+++ b/test/suite/ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js
@@ -1,12 +1,12 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Operator x * y returns ToNumber(x) * ToNumber(y)
- *
- * @path ch11/11.5/11.5.1/S11.5.1_A3_T2.2.js
- * @description Type(x) is different from Type(y) and both types vary between Number (primitive or object) and String (primitive and object)
- */
+/*---
+info: Operator x * y returns ToNumber(x) * ToNumber(y)
+description: >
+ Type(x) is different from Type(y) and both types vary between
+ Number (primitive or object) and String (primitive and object)
+---*/
//CHECK#1
if ("1" * 1 !== 1) {
@@ -57,4 +57,3 @@ if (isNaN("x" * 1) !== true) {
if (isNaN(1 * "x") !== true) {
$ERROR('#10: 1 * "x" === Not-a-Number. Actual: ' + (1 * "x"));
}
-