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