summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js')
-rw-r--r--test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js b/test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js
index 22044d86b..f2fc03437 100644
--- a/test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js
+++ b/test/built-ins/String/prototype/match/S15.5.4.10_A2_T5.js
@@ -7,23 +7,23 @@ es5id: 15.5.4.10_A2_T5
description: Regular expression is /\D{2}/g
---*/
-var __matches=["ab", "cd"];
+var __matches = ["ab", "cd"];
var __string = "123456abcde7890";
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
-if (__string.match(/\D{2}/g).length!== 2) {
- $ERROR('#1: __string = "123456abcde7890"; __string.match(/\\D{2}/g).length=== 2. Actual: '+__string.match(/\D{2}/g).length);
+if (__string.match(/\D{2}/g).length !== 2) {
+ $ERROR('#1: __string = "123456abcde7890"; __string.match(/\\D{2}/g).length=== 2. Actual: ' + __string.match(/\D{2}/g).length);
}
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
-for(var mi=0; mi<__matches.length; mi++) {
- if (__string.match(/\D{2}/g)[mi]!==__matches[mi]) {
- $ERROR('#2.'+mi+': __matches=["ab", "cd"]; __string = "123456abcde7890"; __string.match(/\\D{2}/g)['+mi+']===__matches['+mi+']. Actual: '+__string.match(/\D{2}/g)[mi]);
+for (var mi = 0; mi < __matches.length; mi++) {
+ if (__string.match(/\D{2}/g)[mi] !== __matches[mi]) {
+ $ERROR('#2.' + mi + ': __matches=["ab", "cd"]; __string = "123456abcde7890"; __string.match(/\\D{2}/g)[' + mi + ']===__matches[' + mi + ']. Actual: ' + __string.match(/\D{2}/g)[mi]);
}
}
//