summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js')
-rw-r--r--test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js b/test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js
index 13b2e3793..f243a077d 100644
--- a/test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js
+++ b/test/built-ins/String/prototype/concat/S15.5.4.6_A1_T4.js
@@ -11,7 +11,7 @@ description: Call concat([,[...]]) function without argument of string object
//CHECK#1
//since ToString() evaluates to "" concat() evaluates to concat("")
if ("lego".concat() !== "lego") {
- $ERROR('#1: "lego".concat() === "lego". Actual: ' + ("lego".concat()));
+ $ERROR('#1: "lego".concat() === "lego". Actual: '+("lego".concat()) );
}
//
//////////////////////////////////////////////////////////////////////////////