summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/S15.3.2.1_A3_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/S15.3.2.1_A3_T6.js')
-rw-r--r--test/built-ins/Function/S15.3.2.1_A3_T6.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/S15.3.2.1_A3_T6.js b/test/built-ins/Function/S15.3.2.1_A3_T6.js
index f39efaffc..129c462f2 100644
--- a/test/built-ins/Function/S15.3.2.1_A3_T6.js
+++ b/test/built-ins/Function/S15.3.2.1_A3_T6.js
@@ -22,10 +22,10 @@ var body = "return true;";
//CHECK#1
try {
- var f = new Function(null, body);
+ var f = new Function(null,body);
$ERROR('#1: If P is not parsable as a FormalParameterList_opt then throw a SyntaxError exception');
} catch (e) {
if (!(e instanceof SyntaxError)) {
- $ERROR('#1.1: If P is not parsable as a FormalParameterList_opt then throw a SyntaxError exception');
+ $ERROR('#1.1: If P is not parsable as a FormalParameterList_opt then throw a SyntaxError exception');
}
}