From 112becf7ffa79d2519777300be0beff568114fe6 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Tue, 4 Feb 2014 17:12:01 -0800 Subject: [PATCH] feat(reporter): use spaces rather than tabs when formatting errors --- lib/reporters/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reporters/base.js b/lib/reporters/base.js index b39b8b5d3..eb66be677 100644 --- a/lib/reporters/base.js +++ b/lib/reporters/base.js @@ -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, ' ')); };