Skip to content

Commit 6a83b0f

Browse files
authored
Merge pull request #4 from bryanjenningz/patch-1
Fix bind example test
2 parents 660ead2 + 0fdc7ae commit 6a83b0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Example {
4343
}
4444

4545
let e = new Example();
46-
assert.equal(e.foo(), e);
46+
assert.equal(e.foo.call(null), e);
4747
```
4848

4949

0 commit comments

Comments
 (0)