summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.2.15_A1_T34.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.15_A1_T34.js')
-rw-r--r--test/built-ins/RegExp/S15.10.2.15_A1_T34.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.15_A1_T34.js b/test/built-ins/RegExp/S15.10.2.15_A1_T34.js
index 6e2db75b3..02e5ec81a 100644
--- a/test/built-ins/RegExp/S15.10.2.15_A1_T34.js
+++ b/test/built-ins/RegExp/S15.10.2.15_A1_T34.js
@@ -20,7 +20,7 @@ description: >
try {
$ERROR('#1.1: /[d-G\\n]/.exec("a") throw SyntaxError. Actual: ' + (new RegExp("[d-G\\n]").exec("a")));
} catch (e) {
- if ((e instanceof SyntaxError) !== true) {
+ if((e instanceof SyntaxError) !== true){
$ERROR('#1.2: /[d-G\\n]/.exec("a") throw SyntaxError. Actual: ' + (e));
}
}