summaryrefslogtreecommitdiff
path: root/test/built-ins/String/S15.5.1.1_A1_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/S15.5.1.1_A1_T6.js')
-rw-r--r--test/built-ins/String/S15.5.1.1_A1_T6.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/String/S15.5.1.1_A1_T6.js b/test/built-ins/String/S15.5.1.1_A1_T6.js
index 75f049b4e..29d6ea6f4 100644
--- a/test/built-ins/String/S15.5.1.1_A1_T6.js
+++ b/test/built-ins/String/S15.5.1.1_A1_T6.js
@@ -14,7 +14,7 @@ var __str = String(eval());
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (typeof __str !== "string") {
- $ERROR('#1: __str = String(eval()); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
+ $ERROR('#1: __str = String(eval()); typeof __str === "string". Actual: typeof __str ===' + typeof __str);
}
//
//////////////////////////////////////////////////////////////////////////////
@@ -22,7 +22,7 @@ if (typeof __str !== "string") {
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__str !== "undefined") {
- $ERROR('#2: __str = String(eval()); __str === "undefined". Actual: __str ==='+__str );
+ $ERROR('#2: __str = String(eval()); __str === "undefined". Actual: __str ===' + __str);
}
//
//////////////////////////////////////////////////////////////////////////////