summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.7_A3_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.7_A3_T1.js')
-rw-r--r--test/built-ins/RegExp/S15.10.7_A3_T1.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/RegExp/S15.10.7_A3_T1.js b/test/built-ins/RegExp/S15.10.7_A3_T1.js
index b93fa54cd..bc65ba08a 100644
--- a/test/built-ins/RegExp/S15.10.7_A3_T1.js
+++ b/test/built-ins/RegExp/S15.10.7_A3_T1.js
@@ -13,15 +13,15 @@ var __re = /[^a]*/;
//CHECK#1
if (typeof __re !== "object") {
- $ERROR('#1: __re = /[^a]*/; typeof __re === "object". Actual: ' + (typeof __re));
+ $ERROR('#1: __re = /[^a]*/; typeof __re === "object". Actual: ' + (typeof __re));
}
//CHECK#1
if (__re.constructor !== RegExp) {
- $ERROR('#2: __re = /[^a]*/; __re.constructor === RegExp. Actual: ' + (__re.constructor));
+ $ERROR('#2: __re = /[^a]*/; __re.constructor === RegExp. Actual: ' + (__re.constructor));
}
//CHECK#3
if ((__re instanceof RegExp) !== true) {
- $ERROR('#3: __re = /[^a]*/; (__re instanceof RegExp) === true');
+ $ERROR('#3: __re = /[^a]*/; (__re instanceof RegExp) === true');
}