summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/S15.3.2.1_A1_T13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/S15.3.2.1_A1_T13.js')
-rw-r--r--test/built-ins/Function/S15.3.2.1_A1_T13.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/S15.3.2.1_A1_T13.js b/test/built-ins/Function/S15.3.2.1_A1_T13.js
index fbc01fc89..09942b2c5 100644
--- a/test/built-ins/Function/S15.3.2.1_A1_T13.js
+++ b/test/built-ins/Function/S15.3.2.1_A1_T13.js
@@ -17,9 +17,9 @@ description: Value of the function constructor argument is "{}"
//CHECK#1
try {
var f = new Function({});
- $ERROR('#1: test failed with error '+e);
+ $ERROR('#1: test failed with error ' + e);
} catch (e) {
if (!(e instanceof SyntaxError)) {
- $ERROR('#1.1: If body is not parsable as FunctionBody then throw a SyntaxError exception');
+ $ERROR('#1.1: If body is not parsable as FunctionBody then throw a SyntaxError exception');
}
}