Skip to content

Commit

Permalink
fix(debug.html): Added whitespace after 'SKIPPED'
Browse files Browse the repository at this point in the history
  • Loading branch information
Wizek authored and vojtajina committed Apr 27, 2014
1 parent 9248f1b commit 218ee85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/debug.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
complete: function() {},
store: function() {},
result: window.console ? function(result) {
var msg = result.skipped ? 'SKIPPED' : (result.success ? 'SUCCESS ' : 'FAILED ');
var msg = result.skipped ? 'SKIPPED ' : (result.success ? 'SUCCESS ' : 'FAILED ');
window.console.log(msg + result.suite.join(' ') + ' ' + result.description);

for (var i = 0; i < result.log.length; i++) {
Expand Down

0 comments on commit 218ee85

Please sign in to comment.