aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js')
-rw-r--r--test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js b/test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js
index 3195c149d..29a6dfded 100644
--- a/test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.js
+++ b/test/suite/ch11/11.10/11.10.3/S11.10.3_A3_T2.5.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.10/11.10.3/S11.10.3_A3_T2.5.js
- * @description Type(x) is different from Type(y) and both types vary between String (primitive or object) and Boolean (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
+ String (primitive or object) and Boolean (primitive and object)
+---*/
//CHECK#1
if ((true | "1") !== 1) {
@@ -47,4 +47,3 @@ if ((new Boolean(true) | new String("1")) !== 1) {
if ((new String("1") | new Boolean(true)) !== 1) {
$ERROR('#8: (new String("1") | new Boolean(true)) === 1. Actual: ' + ((new String("1") | new Boolean(true))));
}
-