summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.2.12_A3_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.12_A3_T4.js')
-rw-r--r--test/built-ins/RegExp/S15.10.2.12_A3_T4.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.12_A3_T4.js b/test/built-ins/RegExp/S15.10.2.12_A3_T4.js
index aedc5aa2f..3e7157c58 100644
--- a/test/built-ins/RegExp/S15.10.2.12_A3_T4.js
+++ b/test/built-ins/RegExp/S15.10.2.12_A3_T4.js
@@ -12,7 +12,7 @@ description: RUSSIAN ALPHABET
var regexp_w = /\w/;
//CHECK#0410-042F
-var result = true;
+var result = true;
for (var alpha = 0x0410; alpha <= 0x042F; alpha++) {
if (regexp_w.exec(String.fromCharCode(alpha)) !== null) {
result = false;
@@ -24,7 +24,7 @@ if (result !== true) {
}
//CHECK#0430-044F
-var result = true;
+var result = true;
for (alpha = 0x0430; alpha <= 0x044F; alpha++) {
if (regexp_w.exec(String.fromCharCode(alpha)) !== null) {
result = false;