summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.2.12_A3_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.12_A3_T2.js')
-rw-r--r--test/built-ins/RegExp/S15.10.2.12_A3_T2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.12_A3_T2.js b/test/built-ins/RegExp/S15.10.2.12_A3_T2.js
index 2a868ee15..d5450cdb4 100644
--- a/test/built-ins/RegExp/S15.10.2.12_A3_T2.js
+++ b/test/built-ins/RegExp/S15.10.2.12_A3_T2.js
@@ -12,10 +12,10 @@ description: a - z
var regexp_w = /\w/;
//CHECK#0061-007A
-var result = true;
+var result = true;
for (var alpha = 0x0061; alpha <= 0x007A; alpha++) {
var str = String.fromCharCode(alpha);
- var arr = regexp_w.exec(str);
+ var arr = regexp_w.exec(str);
if ((arr === null) || (arr[0] !== str)) {
result = false;
}