Skip to content

Commit

Permalink
cfformat fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanerck committed Oct 8, 2024
1 parent 837fd2a commit 41007fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/coverage/browser/CodeBrowser.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ component accessors=true {
* @coverageThresholds Options for threshold
*/
function init( required struct coverageThresholds ){
variables.streamBuilder = new testbox.system.modules.cbstreams.models.StreamBuilder();
variables.streamBuilder = new testbox.system.modules.cbstreams.models.StreamBuilder();
variables.coverageThresholds = arguments.coverageThresholds;

return this;
Expand Down
2 changes: 1 addition & 1 deletion tests/specs/coverage/browser/CodeBrowserTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ component extends="testbox.system.BaseSpec" {
function run(){
describe( "CodeBrowser", function(){
it( "can init", function(){
expect( new system.coverage.browser.CodeBrowser ( {} ) ).toBeComponent();
expect( new system.coverage.browser.CodeBrowser( {} ) ).toBeComponent();
} );
} );
}
Expand Down

0 comments on commit 41007fe

Please sign in to comment.