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 Jan 15, 2025
1 parent efe66f9 commit d3bd8b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
10 changes: 8 additions & 2 deletions system/web/context/RequestContext.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,18 @@ component serializable="false" accessors="true" {
* The last status code
* This is used mostly for mocking and tracking multi-step responses in case repsonses are committed.
*/
property name="statusCode" type="numeric" default="0";
property
name ="statusCode"
type ="numeric"
default="0";

/**
* The last status text
*/
property name="statusText" type="string" default="";
property
name ="statusText"
type ="string"
default="";

/************************************** STATIC CONSTRUCTS *********************************************/

Expand Down
3 changes: 1 addition & 2 deletions tests/specs/integration/EventCachingSpec.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
title = "can do #thisFormat# cached events",
data = { format : thisFormat },
body = function( data ){

// TODO: Jon Clausen waiting for a fix on the PDF rendering
if( data.format == "pdf" && isBoxLang() ){
if ( data.format == "pdf" && isBoxLang() ) {
// Skip PDF tests
return;
}
Expand Down

0 comments on commit d3bd8b8

Please sign in to comment.