Skip to content

Commit

Permalink
fix(reporter): remove newline from base reporter browser dump
Browse files Browse the repository at this point in the history
Closes #297
  • Loading branch information
Liam Newman authored and dignifiedquire committed Jan 15, 2013
1 parent 22d391b commit dfae18b
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 @@ -62,7 +62,7 @@ var BaseReporter = function(formatError, reportSlow, adapter) {

// TODO(vojta): change util to new syntax (config object)
dump = util.inspect(dump, false, undefined, this.USE_COLORS);
this.writeCommonMsg(browser + ' LOG:\n' + dump + '\n');
this.writeCommonMsg(browser + ' LOG: ' + dump + '\n');
};


Expand Down

0 comments on commit dfae18b

Please sign in to comment.