Skip to content

Commit

Permalink
feat(reporter): use spaces rather than tabs when formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed Feb 5, 2014
1 parent dc24446 commit 112becf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporters/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var BaseReporter = function(formatError, reportSlow, adapter) {


this.onBrowserError = function(browser, error) {
this.writeCommonMsg(util.format(this.ERROR, browser) + formatError(error, '\t'));
this.writeCommonMsg(util.format(this.ERROR, browser) + formatError(error, ' '));
};


Expand Down

0 comments on commit 112becf

Please sign in to comment.