Skip to content

Commit

Permalink
more boxlang support
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Oct 17, 2024
1 parent a8519c3 commit 908f996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/testing/BaseTestCase.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
* Helper method to deal with ACF's overload of the page context response, come on Adobe, get your act together!
*/
private function getPageContextResponse(){
return server.keyExists( "lucee" ) ? getPageContext().getResponse() : getPageContext()
return server.keyExists( "lucee" ) || server.keyExists( "boxlang") ? getPageContext().getResponse() : getPageContext()
.getResponse()
.getResponse();
}
Expand Down

0 comments on commit 908f996

Please sign in to comment.