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