Skip to content

Commit

Permalink
reset pending vows in Suite#reset
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Jun 14, 2010
1 parent 6baca02 commit 7edb97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vows/suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ this.Suite.prototype = new(function () {
this.batches.forEach(function (b) {
b.lastContext = null;
b.remaining = b._remaining;
b.honored = b.broken = b.errored = b.total = 0;
b.honored = b.broken = b.errored = b.total = b.pending = 0;
});
};

Expand Down

0 comments on commit 7edb97a

Please sign in to comment.