Skip to content

Commit 9eb3ecd

Browse files
dscapeJames Halliday
authored andcommitted
Fixes global leak prop
1 parent 82e8b74 commit 9eb3ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function Test (name_, opts_, cb_) {
5252
this._progeny = [];
5353
this._ok = true;
5454

55-
for (prop in this) {
55+
for (var prop in this) {
5656
this[prop] = (function bind(self, val) {
5757
if (typeof val === 'function') {
5858
return function bound() {

0 commit comments

Comments
 (0)