summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js b/test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js
index 3ef542bdc..71eda47c4 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5-8-1.js
@@ -6,9 +6,9 @@ es5id: 15.3.4.5-8-1
description: Function.prototype.bind, type of bound function must be 'function'
---*/
- function foo() { }
- var o = {};
-
- var bf = foo.bind(o);
+function foo() {}
+var o = {};
+
+var bf = foo.bind(o);
assert.sameValue(typeof(bf), 'function', 'typeof(bf)');