summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js')
-rw-r--r--test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js b/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js
index 2fa2501c3..313e89d79 100644
--- a/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js
+++ b/test/built-ins/Function/prototype/apply/S15.3.4.3_A6_T3.js
@@ -9,14 +9,14 @@ es5id: 15.3.4.3_A6_T3
description: argArray is (object,"1,3,4")
---*/
-var obj={};
+var obj = {};
//CHECK#1
try {
- Function().apply(obj,"1,3,4");
+ Function().apply(obj, "1,3,4");
$ERROR('#1: if argArray is neither an array nor an arguments object (see 10.1.8), a TypeError exception is thrown');
} catch (e) {
if (!(e instanceof TypeError)) {
- $ERROR('#1.1: if argArray is neither an array nor an arguments object (see 10.1.8), a TypeError exception is thrown');
+ $ERROR('#1.1: if argArray is neither an array nor an arguments object (see 10.1.8), a TypeError exception is thrown');
}
}