summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.2.11_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.11_A1_T1.js')
-rw-r--r--test/built-ins/RegExp/S15.10.2.11_A1_T1.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.11_A1_T1.js b/test/built-ins/RegExp/S15.10.2.11_A1_T1.js
index 935042ce2..d60ab2f73 100644
--- a/test/built-ins/RegExp/S15.10.2.11_A1_T1.js
+++ b/test/built-ins/RegExp/S15.10.2.11_A1_T1.js
@@ -10,13 +10,13 @@ description: >
---*/
//CHECK#1
-var arr = /\0/.exec("\u0000");
+var arr = /\0/.exec("\u0000");
if ((arr === null) || (arr[0] !== "\u0000")) {
$ERROR('#1: var arr = /\\0/.exec(\\u0000); arr[0] === "\\u0000". Actual. ' + (arr && arr[0]));
}
//CHECK#2
-var arr = (new RegExp("\\0")).exec("\u0000");
+var arr = (new RegExp("\\0")).exec("\u0000");
if ((arr === null) || (arr[0] !== "\u0000")) {
$ERROR('#2: var arr = (new RegExp("\\0")).exec(\\u0000); arr[0] === "\\u0000". Actual. ' + (arr && arr[0]));
}