summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js b/test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js
index e75c71ee1..4f12d470a 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5-6-5.js
@@ -6,13 +6,13 @@ es5id: 15.3.4.5-6-5
description: Function.prototype.bind - F can get own accessor property
---*/
- var foo = function () { };
+var foo = function() {};
- var obj = foo.bind({});
- Object.defineProperty(obj, "property", {
- get: function () {
- return 12;
- }
- });
+var obj = foo.bind({});
+Object.defineProperty(obj, "property", {
+ get: function() {
+ return 12;
+ }
+});
assert.sameValue(obj.property, 12, 'obj.property');