Skip to content

Commit

Permalink
Apply cfformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored and github-actions[bot] committed Aug 16, 2023
1 parent bc4addc commit a591840
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions models/CLIRenderer.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,14 @@ component {
)
.line();
if ( len( arguments.testData.coverage.data.sonarQubeResults ) ) {
arguments.print.blueLine( "Coverage: SonarQube file written to [#arguments.testData.coverage.data.sonarQubeResults#]" );
arguments.print.blueLine(
"Coverage: SonarQube file written to [#arguments.testData.coverage.data.sonarQubeResults#]"
);
}
if ( len( arguments.testData.coverage.data.browserResults ) ) {
arguments.print.blueLine( "Coverage: Browser written to [#arguments.testData.coverage.data.browserResults#]" );
arguments.print.blueLine(
"Coverage: Browser written to [#arguments.testData.coverage.data.browserResults#]"
);
}
}

Expand Down

0 comments on commit a591840

Please sign in to comment.