Skip to content

Commit

Permalink
[fix] Fix typos in some reporters. Fixes #287.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Nov 4, 2014
1 parent b14f762 commit 1b44458
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions lib/vows/reporters/silent.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
//
// Silent reporter - "Shhh"
//
this.name = 'silent';
this.reset = function () {};
this.report = function () {};
this.print = function () {};
this.name = 'silent';
this.setStream = function () {};
this.reset = function () {};
this.report = function () {};
this.print = function () {};

2 changes: 1 addition & 1 deletion lib/vows/reporters/tap.js
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ var puts = console.puts(options);
//

this.name = "tap";
this.setSTream = function setStream(s) {
this.setStream = function setStream(s) {
options.stream = s;
};

0 comments on commit 1b44458

Please sign in to comment.