diff options
Diffstat (limited to 'test/built-ins/RegExp/S15.10.2.15_A1_T12.js')
-rw-r--r-- | test/built-ins/RegExp/S15.10.2.15_A1_T12.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/RegExp/S15.10.2.15_A1_T12.js b/test/built-ins/RegExp/S15.10.2.15_A1_T12.js index 404cbff86..5a4e4c391 100644 --- a/test/built-ins/RegExp/S15.10.2.15_A1_T12.js +++ b/test/built-ins/RegExp/S15.10.2.15_A1_T12.js @@ -20,7 +20,7 @@ description: > try { $ERROR('#1.1: /[\\Bd-G]/.exec("a") throw SyntaxError. Actual: ' + (new RegExp("[\\Bd-G]").exec("a"))); } catch (e) { - if ((e instanceof SyntaxError) !== true) { + if((e instanceof SyntaxError) !== true){ $ERROR('#1.2: /[\\Bd-G]/.exec("a") throw SyntaxError. Actual: ' + (e)); } } |