Skip to content

Commit

Permalink
fix: remove unnecessary space in the output text
Browse files Browse the repository at this point in the history
  • Loading branch information
hisenb3rg committed Mar 7, 2019
1 parent 0988047 commit c9f40a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli/commands/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ function displayResult(res, options) {
// OK => no vulns found, return
if (res.ok && res.vulnerabilities.length === 0) {
const vulnPathsText = options.showVulnPaths ?
', no vulnerable paths found.' :
', none were found.';
const summaryOKText = chalk.green(`✓ ${testedInfoText} ${vulnPathsText}`);
'no vulnerable paths found.' :
'none were found.';
const summaryOKText = chalk.green(`✓ ${testedInfoText}, ${vulnPathsText}`);
const nextStepsText =
'\n\nNext steps:' +
'\n- Run `snyk monitor` to be notified ' +
Expand Down

0 comments on commit c9f40a9

Please sign in to comment.