summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js')
-rw-r--r--test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js b/test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js
index 820d433fe..05cc593e5 100644
--- a/test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js
+++ b/test/built-ins/String/prototype/split/S15.5.4.14_A4_T12.js
@@ -21,7 +21,7 @@ var __expected = ["h"];
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__split.constructor !== Array) {
- $ERROR('#1: __split.constructor === Array. Actual: '+__split.constructor );
+ $ERROR('#1: __split.constructor === Array. Actual: ' + __split.constructor);
}
//
//////////////////////////////////////////////////////////////////////////////
@@ -29,7 +29,7 @@ if (__split.constructor !== Array) {
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__split.length !== __expected.length) {
- $ERROR('#2: __split.length === __expected.length. Actual: '+__split.length );
+ $ERROR('#2: __split.length === __expected.length. Actual: ' + __split.length);
}
//
//////////////////////////////////////////////////////////////////////////////
@@ -37,7 +37,7 @@ if (__split.length !== __expected.length) {
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
if (__split[0] !== __expected[0]) {
- $ERROR('#3: __split[0] === '+__expected[0]+'. Actual: '+__split[0] );
+ $ERROR('#3: __split[0] === ' + __expected[0] + '. Actual: ' + __split[0]);
}
//
//////////////////////////////////////////////////////////////////////////////