Skip to content

Commit 03e5312

Browse files
committed
missing old removals
1 parent 725e713 commit 03e5312

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system/ioc/Injector.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ component serializable="false" accessors="true" {
361361
// Running standalone, so create our own logging first
362362
configureLogBox( variables.binder.getLogBoxConfig() );
363363
// Create local CacheBox reference
364-
configureCacheBox( variables.binder.getCacheBoxConfig() );
364+
configureCacheBox( variables.binder.getCacheBox() );
365365
}
366366

367367
// Create our object builder

tests/specs/ioc/config/BinderTest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@
387387
function testCacheBoxIntegration(){
388388
// activate cachebox
389389
config.cacheBox( configFile = "my.path.CacheBox" );
390-
cbconfig = config.getCacheBoxConfig();
390+
cbconfig = config.getCacheBox();
391391
assertEquals( true, cbconfig.enabled );
392392
assertEquals( "my.path.CacheBox", cbconfig.configFile );
393393
assertEquals( "coldbox.system.cache", cbconfig.classNamespace );

0 commit comments

Comments
 (0)