From b0b94a0fe9d4e2c3ed2ed8b0132fd03d2cdc24d7 Mon Sep 17 00:00:00 2001 From: Will Hayslett Date: Tue, 1 Aug 2017 12:03:55 -0500 Subject: [PATCH 1/2] Updated "Uncovered Lines" table header to "Uncovered Line #'s" for clarity --- lib/report/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/report/text.js b/lib/report/text.js index 8ab2b7d1..dadd4b35 100644 --- a/lib/report/text.js +++ b/lib/report/text.js @@ -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(' |') + ' |'; } From ab89ecc15fd3921fbaae57c693b6080aa164c210 Mon Sep 17 00:00:00 2001 From: Will Hayslett Date: Tue, 1 Aug 2017 12:21:38 -0500 Subject: [PATCH 2/2] Updated MISSING_COL length --- lib/report/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/report/text.js b/lib/report/text.js index dadd4b35..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 = '-|';