Skip to content

Commit 36f4a58

Browse files
committed
fixed all tests
1 parent 314ee9d commit 36f4a58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system/web/services/ModuleService.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ component extends="coldbox.system.web.services.BaseService" accessors="true" {
698698

699699
// Add as a mapped directory with module name as the namespace with correct mapping path
700700
var packagePath = (
701-
len( mConfig.mapping ) ? mConfig.mapping & ".#mConfig.conventions.modelsLocation#" : mConfig.modelsInvocationPath
701+
len( mConfig.engineMapping ) ? mConfig.engineMapping & ".#mConfig.conventions.modelsLocation#" : mConfig.modelsInvocationPath
702702
);
703703

704704
// Module Injector : Map with no namespace in the local injector

tests/resources/test-module/ModuleConfig.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ component {
1313
this.autoMapModels = true;
1414

1515
function configure(){
16-
settings = {
16+
variables.settings = {
1717
"foo" : "bar"
1818
}
1919
}

0 commit comments

Comments
 (0)