summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.2.12_A4_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.12_A4_T3.js')
-rw-r--r--test/built-ins/RegExp/S15.10.2.12_A4_T3.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.12_A4_T3.js b/test/built-ins/RegExp/S15.10.2.12_A4_T3.js
index 7980c5a22..e8a2b2abf 100644
--- a/test/built-ins/RegExp/S15.10.2.12_A4_T3.js
+++ b/test/built-ins/RegExp/S15.10.2.12_A4_T3.js
@@ -12,7 +12,7 @@ description: 0 - 9
var regexp_W = /\W/;
//CHECK#0030-0039
-var result = true;
+var result = true;
for (var alpha = 0x0030; alpha <= 0x0039; alpha++) {
if (regexp_W.exec(String.fromCharCode(alpha)) !== null) {
result = false;
@@ -29,7 +29,7 @@ if (regexp_W.exec("_") !== null) {
}
//CHECK#0020
-var arr = regexp_W.exec(" ");
+var arr = regexp_W.exec(" ");
if ((arr === null) || (arr[0] !== "\u0020")) {
$ERROR('#2: ');
}