Skip to content

Commit e267fed

Browse files
committed
Try to get tests passing in GA
1 parent 6aa94b0 commit e267fed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test-harness/config/Coldbox.cfc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,11 @@ component{
113113
moduleName = request.MODULE_NAME,
114114
invocationPath = "moduleroot"
115115
);
116-
controller.getRenderer().loadApplicationHelpers( true );
116+
try {
117+
controller.getRenderer().loadApplicationHelpers( true );
118+
} catch ( any e ) {
119+
writeDump( var=e, output="console" );
120+
}
117121
}
118122

119123
}

0 commit comments

Comments
 (0)