Skip to content

Commit

Permalink
Merge branch 'development' of github.com:Ortus-Solutions/TestBox into…
Browse files Browse the repository at this point in the history
… development
  • Loading branch information
lmajano committed Sep 9, 2024
2 parents 64da85f + c5234b3 commit 6d3d5e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions system/reports/ConsoleReporter.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ component extends="TextReporter" {
}

// bundle stats
variables.bundleStats= arguments.results.getBundleStats();
variables.bundleStats = arguments.results.getBundleStats();
// prepare incoming params
prepareIncomingParams();

// prepare the report
savecontent variable ="local.report" {
savecontent variable="local.report" {
include "assets/text.cfm";
}

Expand Down
4 changes: 2 additions & 2 deletions system/reports/MinTextReporter.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ component extends="TextReporter" {
getPageContextResponse().setContentType( "text/plain" );
}
// bundle stats
variables.bundleStats= arguments.results.getBundleStats();
variables.bundleStats = arguments.results.getBundleStats();
// prepare incoming params
prepareIncomingParams();

// prepare the report
savecontent variable ="local.report" {
savecontent variable="local.report" {
include "assets/mintext.cfm";
}
return reReplace(
Expand Down
4 changes: 2 additions & 2 deletions system/reports/TextReporter.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ component extends="BaseReporter" {
getPageContextResponse().setContentType( "text/plain" );
}
// bundle stats
variables.bundleStats= arguments.results.getBundleStats();
variables.bundleStats = arguments.results.getBundleStats();
// prepare incoming params
prepareIncomingParams();
// prepare the report
savecontent variable ="local.report" {
savecontent variable="local.report" {
include "assets/text.cfm";
}
return reReplace(
Expand Down

0 comments on commit 6d3d5e2

Please sign in to comment.