Skip to content

Commit

Permalink
Update LDEV3739.cfc
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 11, 2024
1 parent b06f484 commit 33c11e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/tickets/LDEV3739.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="error" {
);
//fileWrite( uri & "/500_req.json", req.toJson() );
//fileWrite( uri & "/500.json", req.filecontent );
systemOutput( result.filecontent, true );
systemOutput( result, true );
systemOutput( req.filecontent, true );
systemOutput( req, true );
expect( isJson( req.filecontent ) ).toBeTrue();
var result = deserializeJSON( req.filecontent );
expect( req.status_code ).toBe( 500 );
Expand All @@ -79,8 +79,8 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="error" {
//fileWrite( uri & "/404_req.json", req.toJson() );
//fileWrite( uri & "/404.json", req.filecontent );
expect( req.status_code ).toBe( 404 );
systemOutput( result.filecontent, true );
systemOutput( result, true );
systemOutput( req.filecontent, true );
systemOutput( req, true );
expect( isJson( req.filecontent ) ).toBeTrue();
var result = deserializeJSON( req.filecontent );

Expand Down

0 comments on commit 33c11e1

Please sign in to comment.