summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js
index a07cbd0ef..de04b43dd 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A1_T2.js
@@ -12,9 +12,9 @@ description: >
property. Prototype of the object is Function.prototype
---*/
-function FACTORY(){};
+function FACTORY() {};
-FACTORY.prototype=Function.prototype;
+FACTORY.prototype = Function.prototype;
var obj = new FACTORY;
@@ -29,6 +29,6 @@ try {
$ERROR('#2: If the object does not have a [[Call]] property, a TypeError exception is thrown');
} catch (e) {
if (!(e instanceof TypeError)) {
- $ERROR('#2.1: If the object does not have a [[Call]] property, a TypeError exception is thrown');
+ $ERROR('#2.1: If the object does not have a [[Call]] property, a TypeError exception is thrown');
}
}