From 9e8fc76623880491d2d98574e017e2af48818aa5 Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Wed, 30 Mar 2016 01:35:20 +0200 Subject: [PATCH] better wording --- dist/npmts.tests.js | 2 +- ts/npmts.tests.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/npmts.tests.js b/dist/npmts.tests.js index 6e44314..5f5a4b1 100644 --- a/dist/npmts.tests.js +++ b/dist/npmts.tests.js @@ -47,7 +47,7 @@ var coverage = function (configArg) { plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, "lcov.info")) .then(function (percentageArg) { if (percentageArg >= configArg.coverageTreshold) { - plugins.beautylog.ok("your coverage of " + percentageArg + "% " + "is within your treshold of " + + plugins.beautylog.ok("your coverage of " + percentageArg + "% " + "exceeds your treshold of " + configArg.coverageTreshold + "%"); } else { diff --git a/ts/npmts.tests.ts b/ts/npmts.tests.ts index c215b13..38b4fb9 100644 --- a/ts/npmts.tests.ts +++ b/ts/npmts.tests.ts @@ -51,7 +51,7 @@ let coverage = function(configArg){ .then(function(percentageArg){ if (percentageArg >= configArg.coverageTreshold){ plugins.beautylog.ok( - "your coverage of " + percentageArg + "% " + "is within your treshold of " + + "your coverage of " + percentageArg + "% " + "exceeds your treshold of " + configArg.coverageTreshold + "%" ); } else {