summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js')
-rw-r--r--test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js b/test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js
index b33445051..c4c97b310 100644
--- a/test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js
+++ b/test/built-ins/Function/prototype/bind/15.3.4.5-2-4.js
@@ -9,7 +9,7 @@ es5id: 15.3.4.5-2-4
description: Function.prototype.bind allows Target to be a constructor (String)
---*/
- var bsc = String.bind(null);
- var s = bsc("hello world");
+var bsc = String.bind(null);
+var s = bsc("hello world");
assert.sameValue(s, "hello world", 's');