Skip to content

Commit

Permalink
fix lint issue in ProgressAppendOnlyReporter.ts
Browse files Browse the repository at this point in the history
with help from the following command:

    npm run lint:fix
  • Loading branch information
Christopher J. Brody committed Nov 6, 2019
1 parent 1f33b78 commit 448f7c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/reporters/ProgressAppendOnlyReporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
}
Expand Down

0 comments on commit 448f7c6

Please sign in to comment.