aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js')
-rw-r--r--test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js b/test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js
index 9cd4f7848..2721f7871 100644
--- a/test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js
+++ b/test/built-ins/String/prototype/match/S15.5.4.10_A2_T17.js
@@ -17,32 +17,32 @@ Number.prototype.match = String.prototype.match;
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
-if (__num.match(__re)[0]!== "02") {
- $ERROR('#1: __num.match(__re)[0]=== "02". Actual: '+__num.match(__re)[0]);
+if (__num.match(__re)[0] !== "02") {
+ $ERROR('#1: __num.match(__re)[0]=== "02". Actual: ' + __num.match(__re)[0]);
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
-if (__num.match(__re).length !==1) {
- $ERROR('#2: __num.match(__re).length ===1. Actual: '+__num.match(__re).length );
+if (__num.match(__re).length !== 1) {
+ $ERROR('#2: __num.match(__re).length ===1. Actual: ' + __num.match(__re).length);
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
-if (__num.match(__re).index !==1) {
- $ERROR('#3: __num.match(__re).index ===1. Actual: '+__num.match(__re).index );
+if (__num.match(__re).index !== 1) {
+ $ERROR('#3: __num.match(__re).index ===1. Actual: ' + __num.match(__re).index);
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#4
-if (__num.match(__re).input !==String(__num)) {
- $ERROR('#4: __num.match(__re).input ===String(__num). Actual: '+__num.match(__re).input );
+if (__num.match(__re).input !== String(__num)) {
+ $ERROR('#4: __num.match(__re).input ===String(__num). Actual: ' + __num.match(__re).input);
}
//
//////////////////////////////////////////////////////////////////////////////