summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js b/test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js
index 2a3ab1bf2..cc813fe58 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5.2-4-12.js
@@ -8,12 +8,12 @@ description: >
'boundArgs' is 1, length of 'ExtraArgs' is 0
---*/
- var func = function (x) {
- return new Boolean(arguments.length === 1 && x === 1 && arguments[0] === 1);
- };
+var func = function(x) {
+ return new Boolean(arguments.length === 1 && x === 1 && arguments[0] === 1);
+};
- var NewFunc = Function.prototype.bind.call(func, {}, 1);
+var NewFunc = Function.prototype.bind.call(func, {}, 1);
- var newInstance = new NewFunc();
+var newInstance = new NewFunc();
assert.sameValue(newInstance.valueOf(), true, 'newInstance.valueOf()');