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 Dec 9, 2024
1 parent d29a3a5 commit 88faa0e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/specs/ioc/InjectorTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
// init injector
injector.init( { scopeRegistration : { enabled : false } } );

mockLogger = createStub().$( "canDebug", false ).$( "canError", true ).$( "error" );
util = createMock( "coldbox.system.core.util.Util" )
mockLogger = createStub()
.$( "canDebug", false )
.$( "canError", true )
.$( "error" );
util = createMock( "coldbox.system.core.util.Util" )
.$( "getInheritedMetaData" )
.$results( { path : "path.to.object" } );
injector.setUtility( util );
Expand Down

0 comments on commit 88faa0e

Please sign in to comment.