From 448f7c6e9392393cae2a2601ff285974b7206207 Mon Sep 17 00:00:00 2001 From: "Christopher J. Brody" Date: Tue, 5 Nov 2019 21:03:02 -0500 Subject: [PATCH] fix lint issue in ProgressAppendOnlyReporter.ts with help from the following command: npm run lint:fix --- packages/core/src/reporters/ProgressAppendOnlyReporter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/reporters/ProgressAppendOnlyReporter.ts b/packages/core/src/reporters/ProgressAppendOnlyReporter.ts index 16a85d8fb9..329cceeedf 100644 --- a/packages/core/src/reporters/ProgressAppendOnlyReporter.ts +++ b/packages/core/src/reporters/ProgressAppendOnlyReporter.ts @@ -19,7 +19,7 @@ export default class ProgressAppendOnlyReporter extends ProgressKeeper { private render() { process.stdout.write( `Mutation testing ${this.getPercentDone()} (ETC ${this.getEtc()}) ` + - `${this.progress.tested}/${this.progress.total} tested (${this.progress.survived} survived, ${this.progress.timedOut} timed out)` + + `${this.progress.tested}/${this.progress.total} tested (${this.progress.survived} survived, ${this.progress.timedOut} timed out)` + os.EOL ); }