summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.4.1_A6_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.4.1_A6_T1.js')
-rw-r--r--test/built-ins/RegExp/S15.10.4.1_A6_T1.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/RegExp/S15.10.4.1_A6_T1.js b/test/built-ins/RegExp/S15.10.4.1_A6_T1.js
index add5ef6b9..0ab30d722 100644
--- a/test/built-ins/RegExp/S15.10.4.1_A6_T1.js
+++ b/test/built-ins/RegExp/S15.10.4.1_A6_T1.js
@@ -11,6 +11,6 @@ var __re = new RegExp;
__re.toString = Object.prototype.toString;
//CHECK#1
-if (__re.toString() !== "[object " + "RegExp" + "]") {
- $ERROR('#1: __re = new RegExp; __re.toString = Object.prototype.toString; __re.toString() === "[object "+"RegExp"+"]". Actual: ' + (__re.toString()));
+if (__re.toString() !== "[object "+"RegExp"+"]") {
+ $ERROR('#1: __re = new RegExp; __re.toString = Object.prototype.toString; __re.toString() === "[object "+"RegExp"+"]". Actual: ' + (__re.toString()));
}