diff --git a/lib/report/text.js b/lib/report/text.js index 8ab2b7d1..4fe3cf95 100644 --- a/lib/report/text.js +++ b/lib/report/text.js @@ -12,7 +12,7 @@ var path = require('path'), TreeSummarizer = require('../util/tree-summarizer'), utils = require('../object-utils'), PCT_COLS = 9, - MISSING_COL = 15, + MISSING_COL = 19, TAB_SIZE = 1, DELIM = ' |', COL_DELIM = '-|'; @@ -102,7 +102,7 @@ function tableHeader(maxNameCols) { elements.push(formatPct('% Branch')); elements.push(formatPct('% Funcs')); elements.push(formatPct('% Lines')); - elements.push(formatPct('Uncovered Lines', undefined, MISSING_COL)); + elements.push(formatPct('Uncovered Line #\'s', undefined, MISSING_COL)); return elements.join(' |') + ' |'; }