aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js')
-rw-r--r--test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js b/test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js
index cdc8161e0..3c53f6372 100644
--- a/test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js
+++ b/test/suite/ch11/11.9/11.9.2/S11.9.2_A7.7.js
@@ -1,13 +1,12 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * If Type(x) is String and Type(y) is Object,
- * return x != ToPrimitive(y)
- *
- * @path ch11/11.9/11.9.2/S11.9.2_A7.7.js
- * @description y is object, x is primitive string
- */
+/*---
+info: >
+ If Type(x) is String and Type(y) is Object,
+ return x != ToPrimitive(y)
+description: y is object, x is primitive string
+---*/
//CHECK#1
if (("1" != new Boolean(true)) !== false) {
@@ -23,4 +22,3 @@ if (("-1" != new Number(-1)) !== false) {
if (("x" != new String("x")) !== false) {
$ERROR('#3: ("x" != new String("x")) === false');
}
-