summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js b/test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js
index cc9ca589b..7edffd174 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5-8-2.js
@@ -8,10 +8,10 @@ description: >
'Function'
---*/
- function foo() { }
- var o = {};
-
- var bf = foo.bind(o);
- var s = Object.prototype.toString.call(bf);
+function foo() {}
+var o = {};
+
+var bf = foo.bind(o);
+var s = Object.prototype.toString.call(bf);
assert.sameValue(s, '[object Function]', 's');