summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/S15.3.2.1_A3_T14.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/S15.3.2.1_A3_T14.js')
-rw-r--r--test/built-ins/Function/S15.3.2.1_A3_T14.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/S15.3.2.1_A3_T14.js b/test/built-ins/Function/S15.3.2.1_A3_T14.js
index 0d7a87192..38af3ccdf 100644
--- a/test/built-ins/Function/S15.3.2.1_A3_T14.js
+++ b/test/built-ins/Function/S15.3.2.1_A3_T14.js
@@ -24,7 +24,7 @@ var p = "a,b,c";
try {
var f = new Function(p, body);
} catch (e) {
- $ERROR('#1: test failed with error '+e);
+ $ERROR('#1: test failed with error ' + e);
}
//CHECK#2
@@ -33,7 +33,7 @@ if (f.constructor !== Function) {
}
//CHECK#3
-if (f()!==undefined) {
+if (f() !== undefined) {
$ERROR('#3: When the Function constructor is called with arguments p, body the following steps are taken...');
}