summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/S15.10.1_A1_T13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/S15.10.1_A1_T13.js')
-rw-r--r--test/built-ins/RegExp/S15.10.1_A1_T13.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/RegExp/S15.10.1_A1_T13.js b/test/built-ins/RegExp/S15.10.1_A1_T13.js
index 44d78f511..676dda30e 100644
--- a/test/built-ins/RegExp/S15.10.1_A1_T13.js
+++ b/test/built-ins/RegExp/S15.10.1_A1_T13.js
@@ -9,9 +9,9 @@ description: Tested RegExp is "x{1}{1,}"
//CHECK#1
try {
- $ERROR('#1.1: new RegExp("x{1}{1,}") throw SyntaxError. Actual: ' + (new RegExp("x{1}{1,}")));
+ $ERROR('#1.1: new RegExp("x{1}{1,}") throw SyntaxError. Actual: ' + (new RegExp("x{1}{1,}")));
} catch (e) {
- if ((e instanceof SyntaxError) !== true) {
- $ERROR('#1.2: new RegExp("x{1}{1,}") throw SyntaxError. Actual: ' + (e));
- }
+ if ((e instanceof SyntaxError) !== true) {
+ $ERROR('#1.2: new RegExp("x{1}{1,}") throw SyntaxError. Actual: ' + (e));
+ }
}