summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/S15.3.2.1_A1_T7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/S15.3.2.1_A1_T7.js')
-rw-r--r--test/built-ins/Function/S15.3.2.1_A1_T7.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/S15.3.2.1_A1_T7.js b/test/built-ins/Function/S15.3.2.1_A1_T7.js
index 23bde2777..bb68c4257 100644
--- a/test/built-ins/Function/S15.3.2.1_A1_T7.js
+++ b/test/built-ins/Function/S15.3.2.1_A1_T7.js
@@ -20,7 +20,7 @@ var body = new Object(1);
try {
var f = new Function(body);
} catch (e) {
- $ERROR('#1: test failed with error '+e);
+ $ERROR('#1: test failed with error ' + e);
}
//CHECK#2
@@ -29,6 +29,6 @@ if (f.constructor !== Function) {
}
//CHECK#3
-if (f()!==undefined) {
+if (f() !== undefined) {
$ERROR('#3: When the Function constructor is called with one argument then body be that argument the following steps are taken...');
}