aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/String/prototype/replace/S15.5.4.11_A11.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/replace/S15.5.4.11_A11.js')
-rw-r--r--test/built-ins/String/prototype/replace/S15.5.4.11_A11.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/String/prototype/replace/S15.5.4.11_A11.js b/test/built-ins/String/prototype/replace/S15.5.4.11_A11.js
index 5b9af5f11..78b3472ae 100644
--- a/test/built-ins/String/prototype/replace/S15.5.4.11_A11.js
+++ b/test/built-ins/String/prototype/replace/S15.5.4.11_A11.js
@@ -10,7 +10,7 @@ description: Checking String.prototype.replace.length
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (!(String.prototype.replace.hasOwnProperty("length"))) {
- $ERROR('#1: String.prototype.replace.hasOwnProperty("length") return true. Actual: '+String.prototype.replace.hasOwnProperty("length"));
+ $ERROR('#1: String.prototype.replace.hasOwnProperty("length") return true. Actual: ' + String.prototype.replace.hasOwnProperty("length"));
}
//
//////////////////////////////////////////////////////////////////////////////
@@ -18,7 +18,7 @@ if (!(String.prototype.replace.hasOwnProperty("length"))) {
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (String.prototype.replace.length !== 2) {
- $ERROR('#2: String.prototype.replace.length === 2. Actual: '+String.prototype.replace.length );
+ $ERROR('#2: String.prototype.replace.length === 2. Actual: ' + String.prototype.replace.length);
}
//
//////////////////////////////////////////////////////////////////////////////