| Index: test/mjsunit/function-bind.js
|
| diff --git a/test/mjsunit/function-bind.js b/test/mjsunit/function-bind.js
|
| index 4a8f2d2a62443234d8488a0fcdeaf5f89d7fc7e0..81b7e2e5a9f0e3358d33a344fb58d1371db79da3 100644
|
| --- a/test/mjsunit/function-bind.js
|
| +++ b/test/mjsunit/function-bind.js
|
| @@ -66,7 +66,7 @@ function f_bound_this(z) {
|
| return z + this.y - this.x;
|
| }
|
|
|
| -assertEquals(3, f_bound_this(1))
|
| +assertEquals(3, f_bound_this(1));
|
| f = f_bound_this.bind(obj);
|
| assertEquals(2, f(1));
|
| assertEquals(1, f.length);
|
|
|