summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js b/test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js
index d0aedf906..a99ce8cd2 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5-13.b-2.js
@@ -8,9 +8,9 @@ description: >
expected args
---*/
- function foo(x, y) { }
- var o = {};
-
- var bf = foo.bind(o);
+function foo(x, y) {}
+var o = {};
+
+var bf = foo.bind(o);
assert.sameValue(bf.length, 2, 'bf.length');